LockUnlockEventArgs.cs 537 B

123456789101112131415161718192021
  1. using Dfs.WayneChina.HengshanPayTerminal.MessageEntity.Incoming;
  2. using Dfs.WayneChina.HengshanPayTerminal.Support;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace Dfs.WayneChina.HengshanPayTerminal
  7. {
  8. public class LockUnlockEventArgs : EventArgs
  9. {
  10. public LockUnlockEventArgs(LockUnlockOperation op, bool result)
  11. {
  12. Operation = op;
  13. Result = result;
  14. }
  15. public LockUnlockOperation Operation { get; }
  16. public bool Result { get; }
  17. }
  18. }