using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.DispatchAna.Model { /// /// /// public class InletPipePara { /// /// /// public InletPipePara() { IsWaterLevel = true; } /// /// /// /// public InletPipePara (double v) { this.Value = v; } /// /// 是否是水位 /// public bool IsWaterLevel { get; set; } = true; /// /// /// public string Name { get; set; } /// /// /// public double Value { get; set; } } }