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? results; [JsonPropertyName("results")] public IList? Results { get => results; set => this.results = value; } }