using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ChargeInstMode Data Structure.
///
[Serializable]
public class ChargeInstMode : AopObject
{
///
/// 机构简称(英文名称)
///
[JsonProperty("charge_inst")]
public string ChargeInst { get; set; }
///
/// 机构中文名称
///
[JsonProperty("charge_inst_name")]
public string ChargeInstName { get; set; }
///
/// 城市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 省份
///
[JsonProperty("province")]
public string Province { get; set; }
}
}