AConfig.cs 276 B

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