| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability382.Domain;
- public class TaobaoTbkDgVegasSendStatusData
- {
- /*
- 返回结果封装对象
- */
- private IList<TaobaoTbkDgVegasSendStatusMapData>? resultList;
- [JsonPropertyName("result_list")]
- public IList<TaobaoTbkDgVegasSendStatusMapData>? ResultList
- {
- get => resultList;
- set => this.resultList = value;
- }
- }
|