using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.DispatchAna.Model { /// /// /// public class WaterLevelPara { /// /// /// public WaterLevelPara() { } /// /// /// /// public WaterLevelPara (double v) { this.Value = v; } /// /// /// public string Name { get; set; } /// /// /// public double Value { get; set; } } }