TaobaoHttpdnsGetResponse.cs 416 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability304.Response;
  5. public class TaobaoHttpdnsGetResponse : AbstractTopApiResponse
  6. {
  7. /*
  8. HTTP DNS配置信息
  9. */
  10. private string? result;
  11. [JsonPropertyName("result")]
  12. public string? Result
  13. {
  14. get => result;
  15. set => this.result = value;
  16. }
  17. }