using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOpenPublicGisQueryResponse. /// public class AlipayOpenPublicGisQueryResponse : AopResponse { /// /// 精确度 /// [XmlElement("accuracy")] public string Accuracy { get; set; } /// /// 经纬度所在位置 /// [XmlElement("city")] public string City { get; set; } /// /// 纬度信息 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度信息 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 经纬度对应位置所在的省份 /// [XmlElement("province")] public string Province { get; set; } } }