Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ChargeInstMode.cs

36 lines
729 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ChargeInstMode Data Structure.
/// </summary>
[Serializable]
public class ChargeInstMode : AopObject
{
/// <summary>
/// 机构简称(英文名称)
/// </summary>
[JsonProperty("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 机构中文名称
/// </summary>
[JsonProperty("charge_inst_name")]
public string ChargeInstName { get; set; }
/// <summary>
/// 城市
/// </summary>
[JsonProperty("city")]
public string City { get; set; }
/// <summary>
/// 省份
/// </summary>
[JsonProperty("province")]
public string Province { get; set; }
}
}