AConfig.cs 204 B

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