123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HengshanPaymentTerminal.Support
- {
- public enum LockUnlockOperation
- {
- Unlock = 0x00,
- Lock = 0x01,
- None = 0xFF
- }
- }
|