23 lines
406 B
C#
23 lines
406 B
C#
using ET;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
[Config]
|
|
public partial class GemInlayConfigCategory : ACategory<GemInlayConfig>
|
|
{
|
|
public static GemInlayConfigCategory Instance;
|
|
public GemInlayConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class GemInlayConfig:IConfig
|
|
{
|
|
[BsonId]
|
|
public long Id { get; set; }
|
|
public int[] CanInlayArr;
|
|
}
|
|
}
|