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