using System.ComponentModel.DataAnnotations; namespace Win_in.Sfs.Label.Domain.Shared; /// /// 标签状态 /// public enum LabelStatus { /// /// 未定义 /// [Display(Name = "未定义")] None = 0, /// /// 有效 /// [Display(Name = "有效")] Enable = 1, /// /// 无效 /// [Display(Name = "无效")] Disable = 2 }