| 12345678910111213141516171819202122 |
- using Common.Base;
- using MongoDB.Bson.Serialization.Attributes;
- namespace Model
- {
- public class Buff: Object
- {
- private BuffType type;
- public BuffType Type
- {
- get
- {
- return this.type;
- }
- set
- {
- this.type = value;
- }
- }
- }
- }
|