namespace IStation.Algorithm.Source { public class PumpSchedulingPumpPlan { public PumpSchedulingPumpPlan() { } public PumpSchedulingPumpPlan(PumpSchedulingPumpPlan rhs) { this.PumpNum = rhs.PumpNum; this.IsOpen = rhs.IsOpen; this.CurrentFlow = rhs.CurrentFlow; this.CurrentHead = rhs.CurrentHead; this.CurrentSpeed = rhs.CurrentSpeed; this.CurrentPumpPower = rhs.CurrentPumpPower; this.CurrentPumpEfficiency = rhs.CurrentPumpEfficiency; this.CurrentTotalPower = rhs.CurrentTotalPower; } public string PumpNum { get; set; } public bool IsOpen { get; set; } public double CurrentFlow { get; set; } public double CurrentHead { get; set; } public double CurrentSpeed { get; set; } public double CurrentPumpPower { get; set; } public double CurrentPumpEfficiency { get; set; } public double CurrentTotalPower { get; set; } } }