CardInfo.cs 243 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HengshanPaymentTerminal.Support
  5. {
  6. public class CardInfo
  7. {
  8. public byte CardType { get; set; }
  9. public ushort CardCtc { get; set; }
  10. }
  11. }