using HengshanPaymentTerminal.Support; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HengshanPaymentTerminal { public class LockUnlockEventArgs : EventArgs { public LockUnlockEventArgs(LockUnlockOperation op, bool result) { Operation = op; Result = result; } public LockUnlockOperation Operation { get; } public bool Result { get; } } }