ProbeStateEnum.cs 779 B

12345678910111213141516171819202122232425262728293031323334
  1. #region --------------- Copyright Dresser Wayne Pignone -------------
  2. /*
  3. * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Enums/ProbeStateEnum.cs $
  4. *
  5. * 3 07-03-09 15:35 roger.månsson
  6. * Defined values.
  7. *
  8. * 2 07-02-26 14:07 roger.månsson
  9. * Published for COM interop.
  10. *
  11. * 1 07-01-05 15:16 roger.månsson
  12. * Created
  13. */
  14. #endregion
  15. namespace Wayne.ForecourtControl
  16. {
  17. /// <summary>
  18. /// Status of a Tank probe reading
  19. /// </summary>
  20. [System.Runtime.InteropServices.ComVisible(true)]
  21. public enum ProbeState
  22. {
  23. /// <summary>
  24. /// The Probe reading was performed ok.
  25. /// </summary>
  26. Ok,
  27. /// <summary>
  28. /// The probe reading failed.
  29. /// </summary>
  30. Failed,
  31. }
  32. }