using System; namespace iWareModel { /// /// 实体类Model /// public class PropertieModel { /// /// 注释名 /// public string DescriptionName { get; set; } /// /// 属性名 /// public string PropertyName { get; set; } /// /// 数据值 /// public string DataValue { get; set; } } }