using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// NewsfeedLocationInfo Data Structure. /// [Serializable] public class NewsfeedLocationInfo : AopObject { /// /// 地理信息 /// [XmlElement("ad_code")] public string AdCode { get; set; } /// /// 纬度 latitude(填写非0非1) /// [XmlElement("lat")] public string Lat { get; set; } /// /// 经度 longitude(填写非0非1) /// [XmlElement("lon")] public string Lon { get; set; } } }