| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability373.Domain;
- public class TaobaoJuItemsSearchExtend
- {
- /*
- empty
- */
- private bool? empty;
- [JsonPropertyName("empty")]
- public bool? Empty
- {
- get => empty;
- set => this.empty = value;
- }
- }
|