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