using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// PageCreative Data Structure.
///
[Serializable]
public class PageCreative : AopObject
{
///
/// 创意详情列表
///
[XmlArray("list")]
[XmlArrayItem("creative_detail")]
public List List { get; set; }
///
/// 创意分页信息
///
[XmlElement("pagination")]
public PageInfo Pagination { get; set; }
}
}