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