using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KoubeiAdvertCommissionChannelModifyModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionChannelModifyModel : AopObject
{
///
/// 修改渠道信息(新增、删除、修改渠道不可同时为空)
///
[JsonProperty("channels")]
public List Channels { get; set; }
}
}