43 lines
945 B
C#
43 lines
945 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// EduWorkAddress Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class EduWorkAddress : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
[XmlElement("address")]
|
|
public string Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// 城市
|
|
/// </summary>
|
|
[XmlElement("city")]
|
|
public string City { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区
|
|
/// </summary>
|
|
[XmlElement("district_name")]
|
|
public string DistrictName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 北京市
|
|
/// </summary>
|
|
[XmlElement("province")]
|
|
public string Province { get; set; }
|
|
|
|
/// <summary>
|
|
/// 街道
|
|
/// </summary>
|
|
[XmlElement("street_name")]
|
|
public string StreetName { get; set; }
|
|
}
|
|
}
|