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