using Base; namespace Model { /// /// 每个Config的基类 /// public abstract class AConfig: Entity { public AConfig(string entityType): base(entityType) { } public AConfig(long id, string entityType): base(id, entityType) { } } }