using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yw.WinFrmUI { /// /// /// public class ParasItemViewModel { /// /// 属性名称 /// [Display(Name = "属性名称")] public string PropName { get; set; } /// /// 属性值 /// [Display(Name = "属性值")] public string PropValue { get; set; } } }