BuffConfig.cs 295 B

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