You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
543 B
25 lines
543 B
namespace Tiobon.Core.Common;
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Field, Inherited = true)]
|
|
public class EnumAttachedAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 标签类型 样式
|
|
/// </summary>
|
|
public string TagType { get; set; }
|
|
/// <summary>
|
|
/// 中文描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图标
|
|
/// </summary>
|
|
public string Icon { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图标颜色
|
|
/// </summary>
|
|
public string IconColor { get; set; }
|
|
}
|
|
|