| 123456789101112131415161718192021222324 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace Model
- {
- [BsonIgnoreExtraElements]
- 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 | AppType.Gate)]
- public class BuffCategory: ACategory<BuffConfig>
- {
- }
- }
|