using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Road Data Structure. /// [Serializable] public class Road : AopObject { /// /// 输入点和此路的相对方位 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 道路到请求坐标的距离 /// [XmlElement("distance")] public string Distance { get; set; } /// /// 道路ID /// [XmlElement("id")] public string Id { get; set; } /// /// 道路的中心点 /// [XmlElement("location")] public string Location { get; set; } /// /// 道路名称 /// [XmlElement("name")] public string Name { get; set; } } }