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;
|
2021-05-05 13:36:19 +08:00
|
|
|
public bool IsLock;
|
2021-04-08 20:09:59 +08:00
|
|
|
}
|
|
|
|
[BsonId]
|
|
|
|
public long Id { get; set; }
|
|
|
|
public Drop[] DropArr;
|
|
|
|
}
|
|
|
|
}
|