1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HengshanPaymentTerminal
- {
-
-
-
-
- public enum WorkMode
- {
-
-
-
-
- Disabled = 0x00,
-
-
-
-
- SelfServiceAutoAuth = 0x01,
-
-
-
-
- ServiceAutoAuth = 0x02,
-
-
-
-
- ServiceManualAuth = 0x03,
-
-
-
-
- ServicePreAuth = 0x04,
-
-
-
-
- Offline = 0x05
- }
- }
|