| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability372.Domain;
- namespace Topsdk.Top.Ability372.Response;
- public class TaobaoTbkShopRecommendGetResponse : AbstractTopApiResponse
- {
- /*
- 淘宝客店铺
- */
- private IList<TaobaoTbkShopRecommendGetNTbkShop>? results;
- [JsonPropertyName("results")]
- public IList<TaobaoTbkShopRecommendGetNTbkShop>? Results
- {
- get => results;
- set => this.results = value;
- }
- }
|