using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; using Topsdk.Top.Ability371.Domain; namespace Topsdk.Top.Ability371.Response; public class TaobaoTbkItemInfoGetResponse : AbstractTopApiResponse { /* 淘宝客商品 */ private IList? results; [JsonPropertyName("results")] public IList? Results { get => results; set => this.results = value; } }