12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.HengshanPayTerminal
- {
-
-
-
-
- public enum WorkMode
- {
-
-
-
-
- Disabled = 0x00,
-
-
-
-
- SelfServiceAutoAuth = 0x01,
-
-
-
-
- ServiceAutoAuth = 0x02,
-
-
-
-
- ServiceManualAuth = 0x03,
-
-
-
-
- ServicePreAuth = 0x04,
-
-
-
-
- Offline = 0x05
- }
- }
|