BuffConfig.cs 305 B

12345678910111213141516
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace Model
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class BuffConfig : AConfig
  6. {
  7. public string Name { get; set; }
  8. public int Time { get; set; }
  9. }
  10. [Config(AppType.Client | AppType.Gate)]
  11. public class BuffCategory : ACategory<BuffConfig>
  12. {
  13. }
  14. }