using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.CardTrxManager.Support
{
///
/// Payment method enumeration
///
public enum PaymentMethod
{
///
/// Cash payment
///
CASH,
///
/// AliPay payment
///
ALIPAY,
///
/// WeChatPay payment
///
WECHAT,
///
/// IC Card payment
///
IC,
///
/// Car plate bound account payment
///
CarPlate = 100,
///
/// Other payment methods
///
OTHER = 0,
}
}