| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability373.Domain;
- namespace Topsdk.Top.Ability373.Response;
- public class TaobaoJuItemsSearchResponse : AbstractTopApiResponse
- {
- /*
- 返回结果
- */
- private TaobaoJuItemsSearchPaginationResult? result;
- [JsonPropertyName("result")]
- public TaobaoJuItemsSearchPaginationResult? Result
- {
- get => result;
- set => this.result = value;
- }
- }
|