ConfigAttribute.cs 237 B

123456789101112131415
  1. using System;
  2. namespace ETModel
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class ConfigAttribute: BaseAttribute
  6. {
  7. public AppType Type { get; }
  8. public ConfigAttribute(int type)
  9. {
  10. this.Type = (AppType)type;
  11. }
  12. }
  13. }