Buff.cs 342 B

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