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