using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// EduWorkAddress Data Structure.
///
[Serializable]
public class EduWorkAddress : AopObject
{
///
/// 地址
///
[JsonProperty("address")]
public string Address { get; set; }
///
/// 城市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 区
///
[JsonProperty("district_name")]
public string DistrictName { get; set; }
///
/// 北京市
///
[JsonProperty("province")]
public string Province { get; set; }
///
/// 街道
///
[JsonProperty("street_name")]
public string StreetName { get; set; }
}
}