BuffConfig.cs 310 B

1234567891011121314151617181920212223
  1. using Model;
  2. namespace Hotfix
  3. {
  4. public class BuffConfig: AConfig
  5. {
  6. public string Name { get; set; }
  7. public int Duration { get; set; }
  8. public BuffConfig()
  9. {
  10. }
  11. public BuffConfig(long id): base(id)
  12. {
  13. }
  14. }
  15. [Config(AppType.Client)]
  16. public class BuffCategory: ACategory<BuffConfig>
  17. {
  18. }
  19. }