namespace Wayne.ForecourtControl { /// /// Pump state /// [System.Runtime.InteropServices.ComVisible(true)] public enum PumpState { /// /// Pump is closed. /// Closed, /// /// Pump is inoperative /// Inoperative, /// /// Pump is Idle /// Idle, /// /// Pump is Calling for authorization /// Calling, /// /// Pump is authorised and ready to begin fuelling. /// Authorized, /// /// Pump is fuelling /// Fuelling, /// /// pump is Suspended /// Suspended, /// /// Unknown state /// Unknown, /// /// Error state /// Error, /// /// Offline state /// Offline, /// /// Starting state /// Starting, /// /// Stopped state /// Stopped, } }