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

24 lines
390 B
C#
Raw Normal View History

2021-05-01 11:27:41 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class StarShopCategory : ACategory<StarShop>
{
public static StarShopCategory Instance;
public StarShopCategory()
{
Instance = this;
}
}
public partial class StarShop:IConfig
{
[BsonId]
public long Id { get; set; }
public int Itemid;
public long Price;
}
}