using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace IStation.Calculation.Epanet { /// /// /// public class EpaCacluItem { /// /// 文字说明 /// public string Caption { get; set; } /// /// 值 /// public object Value { get; set; } /// /// 单位 /// public string Unit { get; set; } } }