LockUnlockOperation.cs 172 B

123456789
  1. namespace Dfs.WayneChina.HengshanPayTerminal.Support
  2. {
  3. public enum LockUnlockOperation
  4. {
  5. Unlock = 0x00,
  6. Lock = 0x01,
  7. None = 0xFF
  8. }
  9. }