CardAppTypeEnum.cs 545 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDbManager
  5. {
  6. /// <summary>
  7. /// Enumeration of card application type.
  8. /// 卡应用类型。
  9. /// </summary>
  10. public enum CardAppType
  11. {
  12. /// <summary>
  13. /// 感应卡
  14. /// </summary>
  15. RfCard = 0x01,
  16. /// <summary>
  17. /// CPU卡
  18. /// </summary>
  19. CpuCard = 0x02,
  20. /// <summary>
  21. /// 公交卡
  22. /// </summary>
  23. PublicTransportCard = 0x03
  24. }
  25. }