LockUnlockEventArgs.cs 499 B

12345678910111213141516171819202122
  1. using HengshanPaymentTerminal.Support;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HengshanPaymentTerminal
  8. {
  9. public class LockUnlockEventArgs : EventArgs
  10. {
  11. public LockUnlockEventArgs(LockUnlockOperation op, bool result)
  12. {
  13. Operation = op;
  14. Result = result;
  15. }
  16. public LockUnlockOperation Operation { get; }
  17. public bool Result { get; }
  18. }
  19. }