Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AreaInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

24 lines
428 B
C#

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