| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability2474.Domain;
- public class TaobaoTbkDgVegasSendReportRightsSendRptDTO
- {
- /*
- 渠道关系id的发放数据
- */
- private IList<TaobaoTbkDgVegasSendReportRightsSendRelationRptDto>? relationRptList;
- /*
- pid的发放数据
- */
- private IList<TaobaoTbkDgVegasSendReportRightsSendRelationRptDto>? pidRptList;
- [JsonPropertyName("relation_rpt_list")]
- public IList<TaobaoTbkDgVegasSendReportRightsSendRelationRptDto>? RelationRptList
- {
- get => relationRptList;
- set => this.relationRptList = value;
- }
- [JsonPropertyName("pid_rpt_list")]
- public IList<TaobaoTbkDgVegasSendReportRightsSendRelationRptDto>? PidRptList
- {
- get => pidRptList;
- set => this.pidRptList = value;
- }
- }
|