NozzleStateEnum.cs 729 B

123456789101112131415161718192021222324252627282930313233
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/NozzleStateEnum.cs $
  4. *
  5. * 3 07-01-05 8:55 roger.månsson
  6. * Change docs
  7. */
  8. #endregion
  9. namespace Wayne.ForecourtControl
  10. {
  11. /// <summary>
  12. /// The state of the nozzle.
  13. /// </summary>
  14. [System.Runtime.InteropServices.ComVisible(true)]
  15. public enum NozzleState
  16. {
  17. /// <summary>
  18. /// The state of the nozzle is unknown
  19. /// </summary>
  20. Unknown,
  21. /// <summary>
  22. /// The nozzle is resting.
  23. /// </summary>
  24. In,
  25. /// <summary>
  26. /// The nozzle is taken out.
  27. /// </summary>
  28. Out
  29. }
  30. }