12345678910111213141516171819202122232425262728293031323334 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- /*
- * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Enums/ProbeStateEnum.cs $
- *
- * 3 07-03-09 15:35 roger.månsson
- * Defined values.
- *
- * 2 07-02-26 14:07 roger.månsson
- * Published for COM interop.
- *
- * 1 07-01-05 15:16 roger.månsson
- * Created
- */
- #endregion
- namespace Wayne.ForecourtControl
- {
- /// <summary>
- /// Status of a Tank probe reading
- /// </summary>
- [System.Runtime.InteropServices.ComVisible(true)]
- public enum ProbeState
- {
- /// <summary>
- /// The Probe reading was performed ok.
- /// </summary>
- Ok,
- /// <summary>
- /// The probe reading failed.
- /// </summary>
- Failed,
- }
- }
|