TaobaoJuItemsSearchTrackparams.cs 364 B

12345678910111213141516171819202122232425
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability373.Domain;
  5. public class TaobaoJuItemsSearchTrackparams
  6. {
  7. /*
  8. empty
  9. */
  10. private bool? empty;
  11. [JsonPropertyName("empty")]
  12. public bool? Empty
  13. {
  14. get => empty;
  15. set => this.empty = value;
  16. }
  17. }