#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Enums/TankLevelSwitchStatusEnum.cs $ * * 1 07-05-21 16:27 roger.månsson * Created. */ #endregion namespace Wayne.ForecourtControl { /// <summary> /// Enumeration that specifies the possible values of the Low tank level detection system. If the value /// is 'Unknown', no low tank level switch is connected to the pump. /// </summary> public enum TankLevelSwitchStatus { /// <summary> /// No information about low tank level status /// </summary> Unknown, /// <summary> /// The tank level is ok. /// </summary> Ok, /// <summary> /// A low tank level has been detected. /// </summary> Low, } }