using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FlowAlert.Model { public class LeakModel { public LeakModel() { Color = false; ContinuousFlow = "0"; AvgFlow = "--"; MaxFlow = "--"; SuspectedLeakFlow = "--"; SuspectedLeakRate = "--"; NightAllowLeakFlow = "--"; WaterSupply = "--"; SalesWater = "--"; MinFlow = "--"; SysWaterSupply = "--"; SysSalesWater = "--"; CalMinFlow = "--"; } public bool Color { get; set; } public string ContinuousFlow { get; set; } public string AvgFlow { get; set; } public string SuspectedLeakFlow { get; set; } public string SuspectedLeakRate { get; set; } public string NightAllowLeakFlow { get; set; } public string WaterSupply { get; set; } public string SalesWater { get; set; } public string MinFlow { get; set; } public string MaxFlow { get; set; } public string CalMinFlow { get; set; } public string IntervalDays { get; set; } public string SysWaterSupply { get; set; } public string SysSalesWater { get; set; } } }