using System.ComponentModel.DataAnnotations; namespace HStation.Revit { /// /// 属性状态 /// public enum ePropStatus { /// /// 错误 /// [Display(Name = "错误")] Error = -1, /// /// 正常 /// [Display(Name = "正常")] Normal = 0, /// /// 缺省 /// [Display(Name = "缺省")] Lack = 1, /// /// 警告 /// [Display(Name = "警告")] Warning = 2, /// /// 异常 /// [Display(Name = "异常")] Abnormal = 3, } }