using HengshanPaymentTerminal.MessageEntity.Incoming; using HengshanPaymentTerminal.Support; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HengshanPaymentTerminal { public class PumpStateHolder { public LockUnlockOperation OperationType { get; set; } = LockUnlockOperation.None; public int PumpNo { get; set; } public byte NozzleNo { get; set; } public CheckCmdRequest State { get; set; } } }