初始提交
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// KoubeiAdvertCommissionAdvchannelBindModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class KoubeiAdvertCommissionAdvchannelBindModel : 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user