TransitionTypeEnum.cs 905 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. DisableCardReader,
  24. // IC card
  25. CardInserted,
  26. ICCardReaderDisabled,
  27. ICCardReaderReset,
  28. ICCardReaderMACResponse,
  29. // Sinochem cloud
  30. CloudBalanceOk,
  31. CloudBalanceFailed,
  32. CloudPaymentOk,
  33. CloudPaymentFailed,
  34. QRCodePayment,
  35. // Sinochem pos
  36. PosNotifyOk,
  37. PosNotifyFailed,
  38. Next,
  39. Abort,
  40. //Big Screen
  41. GradeConfirmed,
  42. }
  43. }