using Dfs.WayneChina.HengshanPayTerminal.MessageEntity.Incoming; using Dfs.WayneChina.HengshanPayTerminal.Support; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.HengshanPayTerminal { public class LockUnlockEventArgs : EventArgs { public LockUnlockEventArgs(LockUnlockOperation op, bool result) { Operation = op; Result = result; } public LockUnlockOperation Operation { get; } public bool Result { get; } } }