| 1234567891011121314151617181920212223 |
- using Model;
- namespace Hotfix
- {
- public class BuffConfig: AConfig
- {
- public string Name { get; set; }
- public int Duration { get; set; }
- public BuffConfig()
- {
- }
- public BuffConfig(long id): base(id)
- {
- }
- }
- [Config(AppType.Client)]
- public class BuffCategory: ACategory<BuffConfig>
- {
- }
- }
|