using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ExchangeRate Data Structure.
///
[Serializable]
public class ExchangeRate : AopObject
{
///
/// 兑换汇率的基本币种。biz_scene是LOCAL场景下,该参数返回为空。
///
[XmlElement("base_currency")]
public string BaseCurrency { get; set; }
///
/// 兑换汇率对应的兑换目标币种. LOCAL场景下为空
///
[XmlElement("exchange_currency")]
public string ExchangeCurrency { get; set; }
///
/// 转账币种兑换结算币种的汇率。biz_scene是LOCAL场景下,该参数返回空。
///
[XmlElement("rate")]
public long Rate { get; set; }
}
}