using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YY.Admin.Core { /// /// 枚举拓展主题样式 /// [AttributeUsage(AttributeTargets.Enum | AttributeTargets.Field)] public class ThemeAttribute : Attribute { public string Theme { get; private set; } public ThemeAttribute(string theme) { this.Theme = theme; } } }