namespace IStation.Untity { /// /// 枚举的Model类 /// public class EnumModel { /// /// 枚举的描述 /// public string Description { set; get; } /// /// 枚举名称 /// public string Name { set; get; } /// /// 枚举对象的值 /// public int Value { set; get; } } }