namespace Yw.WinFrmUI.Phart
{
///
/// 泵交点
///
public class PumpSectPointViewModel
{
public PumpSectPointViewModel() { }
public PumpSectPointViewModel(PumpSectPointViewModel rhs)
{
this.Q = rhs.Q;
this.H = rhs.H;
this.E = rhs.E;
this.P = rhs.P;
}
public PumpSectPointViewModel(double Q, double H, double? E, double? P)
{
this.Q = Q;
this.H = H;
this.E = E;
this.P = P;
}
///
/// 流量
///
public double Q { get; set; }
///
/// 扬程
///
public double H { get; set; }
///
/// 效率
///
public double? E { get; set; }
///
/// 功率
///
public double? P { get; set; }
}
}