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.
28 lines
466 B
28 lines
466 B
2 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Win_in.Sfs.Label.Domain.Shared;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标签状态
|
||
|
/// </summary>
|
||
|
public enum LabelStatus
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 未定义
|
||
|
/// </summary>
|
||
|
[Display(Name = "未定义")]
|
||
|
None = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 有效
|
||
|
/// </summary>
|
||
|
[Display(Name = "有效")]
|
||
|
Enable = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 无效
|
||
|
/// </summary>
|
||
|
[Display(Name = "无效")]
|
||
|
Disable = 2
|
||
|
}
|