24 lines
431 B
C#
24 lines
431 B
C#
using ET;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
[Config]
|
|
public partial class GemPriceConfigCategory : ACategory<GemPriceConfig>
|
|
{
|
|
public static GemPriceConfigCategory Instance;
|
|
public GemPriceConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class GemPriceConfig:IConfig
|
|
{
|
|
[BsonId]
|
|
public long Id { get; set; }
|
|
public int InlayPrice;
|
|
public int DiscountPrice;
|
|
}
|
|
}
|