using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAppTestTestCreateModel Data Structure. /// [Serializable] public class AlipayOpenAppTestTestCreateModel : AopObject { /// /// 详细地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 纬度 /// [XmlElement("latitude")] public AccessParams Latitude { get; set; } /// /// 经度 /// [XmlElement("longitude")] public string Longitude { get; set; } } }