using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KoubeiAdvertCommissionChannelDeleteModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionChannelDeleteModel : AopObject
{
///
/// 需要删除的渠道ID列表
///
[JsonProperty("channel_ids")]
public List ChannelIds { get; set; }
}
}