| 123456789101112131415161718192021222324 |
- using System;
- namespace Model
- {
- [AttributeUsage(AttributeTargets.Class)]
- public class ConfigAttribute: Attribute
- {
- private ServerType ServerType { get; set; }
- public ConfigAttribute(ServerType serverType)
- {
- this.ServerType = serverType;
- }
- public bool Contains(ServerType serverType)
- {
- if ((this.ServerType & serverType) == 0)
- {
- return false;
- }
- return true;
- }
- }
- }
|