PumpStateHolder.cs 524 B

123456789101112131415161718192021
  1. using HengshanPaymentTerminal.MessageEntity.Incoming;
  2. using HengshanPaymentTerminal.Support;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace HengshanPaymentTerminal
  9. {
  10. public class PumpStateHolder
  11. {
  12. public LockUnlockOperation OperationType { get; set; } = LockUnlockOperation.None;
  13. public int PumpNo { get; set; }
  14. public byte NozzleNo { get; set; }
  15. public CheckCmdRequest State { get; set; }
  16. }
  17. }