TransitionTypeEnum.cs 809 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SinochemInternetPlusApp
  5. {
  6. enum TransitionType
  7. {
  8. Init,
  9. Done,
  10. Error,
  11. Shutdown,
  12. Timeout,
  13. WelcomeSent,
  14. // pump
  15. NozzleLifted,
  16. NozzleReplaced,
  17. PumpAuthOk,
  18. PumpAuthFailed,
  19. FuelingDone,
  20. FuelingRemoved,
  21. // carplate
  22. CarPlateScanned,
  23. // IC card
  24. CardInserted,
  25. ICCardReaderDisabled,
  26. ICCardReaderReset,
  27. ICCardReaderMACResponse,
  28. // Sinochem cloud
  29. CloudBalanceOk,
  30. CloudBalanceFailed,
  31. CloudPaymentOk,
  32. CloudPaymentFailed,
  33. // Sinochem pos
  34. PosNotifyOk,
  35. PosNotifyFailed,
  36. Next,
  37. Abort,
  38. }
  39. }