using ET; using MongoDB.Bson.Serialization.Attributes; namespace Cal.DataTable { [Config] public partial class Sys_PrefabCategory : ACategory { public static Sys_PrefabCategory Instance; public Sys_PrefabCategory() { Instance = this; } } public partial class Sys_Prefab:IConfig { [BsonId] public long Id { get; set; } public string Name; public string Desc; public string AssetPath; public byte PoolId; public bool CullDespawned; public int CullAbove; public int CullDelay; public int CullMaxPerPass; } }