namespace PBS.WinFrmUI.Hydro.Dispatch.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; }
}
}