26 lines
566 B
C#
26 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiAdvertCommissionAdvchannelUnbindModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiAdvertCommissionAdvchannelUnbindModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 广告ID
|
|
/// </summary>
|
|
[JsonProperty("adv_id")]
|
|
public string AdvId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道ID列表
|
|
/// </summary>
|
|
[JsonProperty("channel_id_list")]
|
|
|
|
public List<string> ChannelIdList { get; set; }
|
|
}
|
|
} |