27 lines
658 B
C#
27 lines
658 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiAdvertCommissionAdvchannelUnbindModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiAdvertCommissionAdvchannelUnbindModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 广告ID
|
|
/// </summary>
|
|
[XmlElement("adv_id")]
|
|
public string AdvId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道ID列表
|
|
/// </summary>
|
|
[XmlArray("channel_id_list")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> ChannelIdList { get; set; }
|
|
}
|
|
}
|