using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; namespace Jd.Api.Response { public class MarketBdpFollowShopSumQueryResponse:JdResponse{ [JsonProperty("popCoopModeCd")] public string popCoopModeCd { get; set; } [JsonProperty("popCoopModeDesc")] public string popCoopModeDesc { get; set; } [JsonProperty("followShopNum")] public long followShopNum { get; set; } [JsonProperty("followSkuNum")] public long followSkuNum { get; set; } [JsonProperty("followSkuCancelNum")] public long followSkuCancelNum { get; set; } [JsonProperty("venderId")] public string venderId { get; set; } [JsonProperty("venderName")] public string venderName { get; set; } [JsonProperty("shopId")] public string shopId { get; set; } [JsonProperty("dt")] public string dt { get; set; } } }