31 lines
568 B
C#
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;
|
|
}
|
|
}
|