namespace Yw.WinFrmUI.Phart { /// /// 泵运行视图ViewModel /// public class PumpWorkingViewViewModel { public PumpWorkingViewViewModel() { } public PumpWorkingViewViewModel(PumpWorkingViewViewModel rhs) { this.Id = rhs.Id; this.Name = rhs.Name; this.CurveName = rhs.CurveName; this.Color = rhs.Color; this.StartH = rhs.StartH; this.PipeQ = rhs.PipeQ; this.PipeH = rhs.PipeH; this.Items = rhs.Items; } /// /// 标识 /// public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 名称 /// public string CurveName { get; set; } /// /// 颜色 /// public Color Color { get; set; } /// /// 起始点扬程 /// public double StartH { get; set; } /// /// 管道流量 /// public double PipeQ { get; set; } /// /// 管道扬程 /// public double PipeH { get; set; } /// /// 变速项列表 /// public List Items { get; set; } } }