| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Defaultability.Domain;
- public class TaobaoTbkDgGeneralLinkConvertLkShopDTO
- {
- /*
- 店铺ID
- */
- private string? shopId;
- [JsonPropertyName("shop_id")]
- public string? ShopId
- {
- get => shopId;
- set => this.shopId = value;
- }
- }
|