zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Data/SignInRewardMonth.cs

31 lines
568 B
C#

using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class SignInRewardMonthCategory : ACategory<SignInRewardMonth>
{
public static SignInRewardMonthCategory Instance;
public SignInRewardMonthCategory()
{
Instance = this;
}
}
public partial class SignInRewardMonth:IConfig
{
public partial class Rewards
{
public int _Id;
public long Count;
}
[BsonId]
public long Id { get; set; }
public ushort Year;
public byte Month;
public byte Times;
public Rewards[] RewardsArr;
}
}