TaobaoJuItemsSearchResponse.cs 505 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Ability373.Domain;
  5. namespace Topsdk.Top.Ability373.Response;
  6. public class TaobaoJuItemsSearchResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. 返回结果
  10. */
  11. private TaobaoJuItemsSearchPaginationResult? result;
  12. [JsonPropertyName("result")]
  13. public TaobaoJuItemsSearchPaginationResult? Result
  14. {
  15. get => result;
  16. set => this.result = value;
  17. }
  18. }