using System; namespace Blog.Core.Common { [AttributeUsage(AttributeTargets.Field, Inherited = true)] public class EnumAttachedAttribute : Attribute { /// /// 标签类型 样式 /// public string TagType { get; set; } /// /// 中文描述 /// public string Description { get; set; } /// /// 图标 /// public string Icon { get; set; } /// /// 图标颜色 /// public string IconColor { get; set; } } }