using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PageInfo Data Structure.
///
[Serializable]
public class PageInfo : AopObject
{
///
/// 分页查询当前页
///
[XmlElement("current")]
public long Current { get; set; }
///
/// 分页查询单页记录数
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 创意总数
///
[XmlElement("total")]
public long Total { get; set; }
}
}