FuelingStateEnum.cs 747 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.HengshanPos
  5. {
  6. /// <summary>
  7. /// Enumeration of the pump fueling state
  8. /// from nozzle lift until nozzle returned
  9. /// </summary>
  10. public enum FuelingState
  11. {
  12. /// <summary>
  13. /// Indicates the pump is calling.
  14. /// </summary>
  15. Ready,
  16. /// <summary>
  17. /// Represents the pump is authorized.
  18. /// </summary>
  19. Authorized,
  20. /// <summary>
  21. /// Indicates the fueling is ongoing, fueling data is received.
  22. /// </summary>
  23. Running,
  24. /// <summary>
  25. /// Represents the fueling is completed.
  26. /// </summary>
  27. Completed
  28. }
  29. }