TankLevelSwitchStatusEnum.cs 866 B

123456789101112131415161718192021222324252627282930313233
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Enums/TankLevelSwitchStatusEnum.cs $
  4. *
  5. * 1 07-05-21 16:27 roger.månsson
  6. * Created.
  7. */
  8. #endregion
  9. namespace Wayne.ForecourtControl
  10. {
  11. /// <summary>
  12. /// Enumeration that specifies the possible values of the Low tank level detection system. If the value
  13. /// is 'Unknown', no low tank level switch is connected to the pump.
  14. /// </summary>
  15. public enum TankLevelSwitchStatus
  16. {
  17. /// <summary>
  18. /// No information about low tank level status
  19. /// </summary>
  20. Unknown,
  21. /// <summary>
  22. /// The tank level is ok.
  23. /// </summary>
  24. Ok,
  25. /// <summary>
  26. /// A low tank level has been detected.
  27. /// </summary>
  28. Low,
  29. }
  30. }