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