Files
SVSimServer/SVSim.Database/Models/Config/NormalBonusEntry.cs
gamer147 0d01727e48 chore(config): split NormalBonusEntry, strengthen Normal-defaults warning
File-per-class convention + explicit warning against the property-initializer
collection-default bug class (2026-05-24).
2026-06-13 15:55:12 -04:00

13 lines
317 B
C#

using SVSim.Database.Enums;
namespace SVSim.Database.Models.Config;
public class NormalBonusEntry
{
public int Day { get; set; }
public int EffectId { get; set; } = 1;
public UserGoodsType RewardType { get; set; }
public long RewardDetailId { get; set; }
public int RewardNumber { get; set; }
}