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