using Yw.Hydro; namespace Yw.WinFrmUI { /// /// /// public class HydroParterPropStatusViewModel { /// /// /// public HydroParterPropStatusViewModel() { } /// /// /// public HydroParterPropStatusViewModel(string propName, ePropStatus propStatus, string statusInfo) { this.PropName = propName; this.PropStatus = propStatus; this.StatusInfo = statusInfo; } /// /// 属性名称 /// public string PropName { get; set; } /// /// 属性状态 /// public ePropStatus PropStatus { get; set; } /// /// 状态信息 /// public string StatusInfo { get; set; } } }