using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PromoPageInfo Data Structure.
///
[Serializable]
public class PromoPageInfo : AopObject
{
///
/// 页码
///
[XmlElement("page_num")]
public long PageNum { get; set; }
///
/// 每页大小
///
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}