Buff.cs 388 B

12345678910111213141516171819202122
  1. using Common.Base;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace Model
  4. {
  5. public class Buff: Object
  6. {
  7. private BuffType type;
  8. public BuffType Type
  9. {
  10. get
  11. {
  12. return this.type;
  13. }
  14. set
  15. {
  16. this.type = value;
  17. }
  18. }
  19. }
  20. }