using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KbAdvertAdvChannelResponse Data Structure.
///
[Serializable]
public class KbAdvertAdvChannelResponse : AopObject
{
///
/// 广告内容模型
///
[XmlArray("adv_content_list")]
[XmlArrayItem("kb_advert_adv_content_response")]
public List AdvContentList { get; set; }
///
/// 广告id
///
[XmlElement("adv_id")]
public string AdvId { get; set; }
///
/// 渠道ID
///
[XmlElement("channel_id")]
public string ChannelId { get; set; }
///
/// 渠道名称
///
[XmlElement("channel_name")]
public string ChannelName { get; set; }
///
/// 渠道类型
///
[XmlElement("channel_type")]
public string ChannelType { get; set; }
}
}