using System; namespace ETModel { [AttributeUsage(AttributeTargets.Class)] public class ConfigAttribute: BaseAttribute { public AppType Type { get; } public ConfigAttribute(AppType type) { this.Type = type; } } }