| 123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability304.Response;
- public class TaobaoOpenuidGetResponse : AbstractTopApiResponse
- {
- /*
- OpenUID
- */
- private string? openUid;
- [JsonPropertyName("open_uid")]
- public string? OpenUid
- {
- get => openUid;
- set => this.openUid = value;
- }
- }
|