AConfig.cs 277 B

12345678910111213141516
  1. namespace Model
  2. {
  3. /// <summary>
  4. /// 每个Config的基类
  5. /// </summary>
  6. public abstract class AConfig: Entity
  7. {
  8. protected AConfig(EntityType entityType): base(entityType)
  9. {
  10. }
  11. protected AConfig(long id, EntityType entityType): base(id, entityType)
  12. {
  13. }
  14. }
  15. }