123456789101112131415161718192021222324252627282930313233 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- /*
- * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/NozzleStateEnum.cs $
- *
- * 3 07-01-05 8:55 roger.månsson
- * Change docs
- */
- #endregion
- namespace Wayne.ForecourtControl
- {
- /// <summary>
- /// The state of the nozzle.
- /// </summary>
- [System.Runtime.InteropServices.ComVisible(true)]
- public enum NozzleState
- {
- /// <summary>
- /// The state of the nozzle is unknown
- /// </summary>
- Unknown,
- /// <summary>
- /// The nozzle is resting.
- /// </summary>
- In,
- /// <summary>
- /// The nozzle is taken out.
- /// </summary>
- Out
- }
- }
|