using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiAdvertCommissionChannelDeleteModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionChannelDeleteModel : AopObject
{
///
/// 需要删除的渠道ID列表
///
[XmlArray("channel_ids")]
[XmlArrayItem("string")]
public List ChannelIds { get; set; }
}
}