using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// LocationInfo Data Structure. /// [Serializable] public class LocationInfo : AopObject { /// /// 用户所处的经度 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 用户当前的纬度 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 国家统一行政编码 /// [XmlElement("region_code")] public string RegionCode { get; set; } } }