NewGaoKaoApi/PaymentSDK/AliPay/Domain/OverseasTravelRate.cs

31 lines
841 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// OverseasTravelRate Data Structure.
/// </summary>
[Serializable]
public class OverseasTravelRate : AopObject
{
/// <summary>
/// 货币代码ISO标准alpha- 3币种代码
/// </summary>
[XmlElement("currency")]
public string Currency { get; set; }
/// <summary>
/// 货币icon的url地址
/// </summary>
[XmlElement("currency_icon")]
public string CurrencyIcon { get; set; }
/// <summary>
/// 汇率double类型为支付宝当面付的当前币种/CNY的汇率值如1美元=6.2345人民币元即汇率为6.2345
/// </summary>
[XmlElement("rate")]
public string Rate { get; set; }
}
}