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
    }
}