LeakModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace FlowAlert.Model
  6. {
  7. public class LeakModel
  8. {
  9. public LeakModel()
  10. {
  11. Color = false;
  12. ContinuousFlow = "0";
  13. AvgFlow = "--";
  14. MaxFlow = "--";
  15. SuspectedLeakFlow = "--";
  16. SuspectedLeakRate = "--";
  17. NightAllowLeakFlow = "--";
  18. WaterSupply = "--";
  19. SalesWater = "--";
  20. MinFlow = "--";
  21. SysWaterSupply = "--";
  22. SysSalesWater = "--";
  23. CalMinFlow = "--";
  24. }
  25. public bool Color { get; set; }
  26. public string ContinuousFlow { get; set; }
  27. public string AvgFlow { get; set; }
  28. public string SuspectedLeakFlow { get; set; }
  29. public string SuspectedLeakRate { get; set; }
  30. public string NightAllowLeakFlow { get; set; }
  31. public string WaterSupply { get; set; }
  32. public string SalesWater { get; set; }
  33. public string MinFlow { get; set; }
  34. public string MaxFlow { get; set; }
  35. public string CalMinFlow { get; set; }
  36. public string IntervalDays { get; set; }
  37. public string SysWaterSupply { get; set; }
  38. public string SysSalesWater { get; set; }
  39. }
  40. }