using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayGongyiAddressTest Data Structure. /// [Serializable] public class AlipayGongyiAddressTest : AopObject { /// /// 航海走 /// [XmlElement("city")] public string City { get; set; } /// /// 中国 /// [XmlElement("contury")] public string Contury { get; set; } /// /// 街道 /// [XmlElement("street")] public string Street { get; set; } } }