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