NewGaoKaoApi/PaymentSDK/AliPay/Domain/ChargeInstMode.cs

37 lines
841 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ChargeInstMode Data Structure.
/// </summary>
[Serializable]
public class ChargeInstMode : AopObject
{
/// <summary>
/// 机构简称(英文名称)
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 机构中文名称
/// </summary>
[XmlElement("charge_inst_name")]
public string ChargeInstName { get; set; }
/// <summary>
/// 城市
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 省份
/// </summary>
[XmlElement("province")]
public string Province { get; set; }
}
}