#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
{
///
/// 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.
///
public enum TankLevelSwitchStatus
{
///
/// No information about low tank level status
///
Unknown,
///
/// The tank level is ok.
///
Ok,
///
/// A low tank level has been detected.
///
Low,
}
}