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

24 lines
395 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 ArenaShopCategory : ACategory<ArenaShop>
{
public static ArenaShopCategory Instance;
public ArenaShopCategory()
{
Instance = this;
}
}
public partial class ArenaShop:IConfig
{
[BsonId]
public long Id { get; set; }
public int Itemid;
public long Price;
}
}