using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TuitionAddress Data Structure. /// [Serializable] public class TuitionAddress : AopObject { /// /// 地址 /// [XmlElement("address_1")] public string Address1 { get; set; } /// /// 地址 /// [XmlElement("address_2")] public string Address2 { get; set; } /// /// City or District or Suburb or Town or Village /// [XmlElement("city")] public string City { get; set; } /// /// 国家编码 /// [XmlElement("region")] public string Region { get; set; } /// /// State or County or Province /// [XmlElement("state")] public string State { get; set; } /// /// 邮编 /// [XmlElement("zip_code")] public string ZipCode { get; set; } } }