using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AreaInfo Data Structure.
///
[Serializable]
public class AreaInfo : AopObject
{
///
/// 城市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 省份
///
[JsonProperty("province")]
public string Province { get; set; }
}
}