ConfigAttribute.cs 228 B

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