1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal.Support
- {
- public enum CardState
- {
- Ok = 0x00,
- LostCard = 0x01,
- ClosedCard = 0x02,
- ExpiredCard = 0x03,
- NoInfo = 0x04,
- OtherErrors = 0x05,
- Frozen = 0x06
- }
- }
|