123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.HengshanPos
- {
- /// <summary>
- /// Enumeration of the pump fueling state
- /// from nozzle lift until nozzle returned
- /// </summary>
- public enum FuelingState
- {
- /// <summary>
- /// Indicates the pump is calling.
- /// </summary>
- Ready,
- /// <summary>
- /// Represents the pump is authorized.
- /// </summary>
- Authorized,
- /// <summary>
- /// Indicates the fueling is ongoing, fueling data is received.
- /// </summary>
- Running,
- /// <summary>
- /// Represents the fueling is completed.
- /// </summary>
- Completed
- }
- }
|