namespace Yw.WinFrmUI.Phart
{
public class PumpSerialParallelViewModel
{
///
/// 标识
///
public string Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 颜色
///
public Color Color { get; set; }
///
/// 是否是串并联线
///
public bool IsSerialParallel { get; set; }
///
/// 流量扬程线
///
public Yw.Geometry.CubicSpline2d Qh { get; set; }
///
/// 流量效率线
///
public Yw.Geometry.CubicSpline2d Qe { get; set; }
///
/// 流量功率线
///
public Yw.Geometry.CubicSpline2d Qp { get; set; }
}
}