TaobaoTbkShopRecommendGetResponse.cs 529 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Ability372.Domain;
  5. namespace Topsdk.Top.Ability372.Response;
  6. public class TaobaoTbkShopRecommendGetResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. 淘宝客店铺
  10. */
  11. private IList<TaobaoTbkShopRecommendGetNTbkShop>? results;
  12. [JsonPropertyName("results")]
  13. public IList<TaobaoTbkShopRecommendGetNTbkShop>? Results
  14. {
  15. get => results;
  16. set => this.results = value;
  17. }
  18. }