namespace Yw.WinFrmUI
{
///
/// 工况监测视图
///
public class HydroWorkingMonitorViewModel
{
///
///
///
public HydroWorkingMonitorViewModel() { }
///
///
///
public HydroWorkingMonitorViewModel(HydroMonitorValueViewModel rhs)
{
this.Relation = rhs.Vmo.Parter;
this.PropName = rhs.Vmo.PropName;
this.PropValue = rhs.PropValue;
}
///
/// 关联构件
/// Code
///
public string Relation { get; set; }
///
/// 属性名称
///
public string PropName { get; set; }
///
/// 属性值
///
public double? PropValue { get; set; }
}
}