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

24 lines
390 B
C#

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;
}
}