12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager
- {
- /// <summary>
- /// Enumeration of card application type.
- /// 卡应用类型。
- /// </summary>
- public enum CardAppType
- {
- /// <summary>
- /// 感应卡
- /// </summary>
- RfCard = 0x01,
- /// <summary>
- /// CPU卡
- /// </summary>
- CpuCard = 0x02,
- /// <summary>
- /// 公交卡
- /// </summary>
- PublicTransportCard = 0x03
- }
- }
|