12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace SinochemInternetPlusApp
- {
- enum TransitionType
- {
- Init,
- Done,
- Error,
- Shutdown,
- Timeout,
- WelcomeSent,
- // pump
- NozzleLifted,
- NozzleReplaced,
- PumpAuthOk,
- PumpAuthFailed,
- FuelingDone,
- FuelingRemoved,
- // carplate
- CarPlateScanned,
- // IC card
- CardInserted,
- ICCardReaderDisabled,
- ICCardReaderReset,
- ICCardReaderMACResponse,
- // Sinochem cloud
- CloudBalanceOk,
- CloudBalanceFailed,
- CloudPaymentOk,
- CloudPaymentFailed,
- // Sinochem pos
- PosNotifyOk,
- PosNotifyFailed,
- Next,
- Abort,
- }
- }
|