You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
642 B
C#
29 lines
642 B
C#
using System;
|
|
|
|
namespace EntrustSettle.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; }
|
|
}
|
|
}
|