using System.Collections.Generic; using System.Text.Json.Serialization; using Topsdk.Util; namespace Topsdk.Top.Ability304.Response; public class TaobaoHttpdnsGetResponse : AbstractTopApiResponse { /* HTTP DNS配置信息 */ private string? result; [JsonPropertyName("result")] public string? Result { get => result; set => this.result = value; } }