NewGaoKaoApi/PaymentSDK/AliPay/Domain/RateCurrency.cs

31 lines
739 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>
/// RateCurrency Data Structure.
/// </summary>
[Serializable]
public class RateCurrency : AopObject
{
/// <summary>
/// 货币编码ISO标准alpha-3币种编码
/// </summary>
[XmlElement("currency")]
public string Currency { get; set; }
/// <summary>
/// 币种中文名称
/// </summary>
[XmlElement("currency_chinese_name")]
public string CurrencyChineseName { get; set; }
/// <summary>
/// 币种图标
/// </summary>
[XmlElement("currency_icon")]
public string CurrencyIcon { get; set; }
}
}