24 lines
405 B
C#
24 lines
405 B
C#
using ET;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
[Config]
|
|
public partial class TitleConfigCategory : ACategory<TitleConfig>
|
|
{
|
|
public static TitleConfigCategory Instance;
|
|
public TitleConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class TitleConfig:IConfig
|
|
{
|
|
[BsonId]
|
|
public long Id { get; set; }
|
|
public string Title;
|
|
public int Type;
|
|
}
|
|
}
|