namespace Atomx.Common.Configuration
{
public static class CurrencyNumber
{
///
/// 金币
///
public const int Gold = 1;
///
/// 宝石
///
public const int Gem = 2;
///
/// 美元
///
public const int USD = 100;
///
/// 人民币
///
public const int CNY = 101;
///
/// 欧元
///
public const int EUR = 102;
///
/// 港币
///
public const int HKD = 102;
///
/// USDT
///
public const int USDT = 1000;
///
/// 比特币
///
public const int Bitcoin = 1001;
///
/// 以太坊
///
public const int Ethereum = 1001;
}
}