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

32 lines
530 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class SonSetCategory : ACategory<SonSet>
{
public static SonSetCategory Instance;
public SonSetCategory()
{
Instance = this;
}
}
public partial class SonSet:IConfig
{
public partial class Drop
{
public int _Id;
public int Type;
public int Weight;
public int MinCount;
public int MaxCount;
}
[BsonId]
public long Id { get; set; }
public Drop[] DropArr;
public bool IsLock;
}
}