24 lines
390 B
C#
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;
|
|
}
|
|
}
|