using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CloudbusLocation Data Structure. /// [Serializable] public class CloudbusLocation : AopObject { /// /// 维度 /// [XmlElement("lat")] public string Lat { get; set; } /// /// 经度 /// [XmlElement("lng")] public string Lng { get; set; } } }