using System.ComponentModel.DataAnnotations;
|
|
namespace IStation.Epanet.Analysis
|
{
|
public class InputNode
|
{
|
public InputNode() { }
|
public InputNode(InputNode rhs)
|
{
|
this.ID = rhs.ID;
|
this.Index = rhs.Index;
|
this.Elevation = rhs.Elevation;
|
this.BaseDemand = rhs.BaseDemand;
|
this.Pattern = rhs.Pattern;
|
this.Emitter = rhs.Emitter;
|
}
|
|
[Display(Name = "标识")]
|
public string ID { get; set; }
|
|
[Display(Name = "索引")]
|
public int Index { get; set; }
|
|
[Display(Name = "标高")]
|
public float Elevation { get; set; }
|
|
[Display(Name = "基础需水量")]
|
public float BaseDemand { get; set; }
|
|
[Display(Name = "时间模式索引")]
|
public float Pattern { get; set; }
|
|
[Display(Name = "扩散器系数")]
|
public float Emitter { get; set; }
|
|
}
|
}
|