using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// PaginationCook Data Structure.
///
[Serializable]
public class PaginationCook : AopObject
{
///
/// 出参列表
///
[XmlArray("list")]
[XmlArrayItem("kbdish_cook_info")]
public List List { get; set; }
///
/// 表示当前页数
///
[XmlElement("page_no")]
public string PageNo { get; set; }
///
/// 表示每页条数
///
[XmlElement("page_size")]
public string PageSize { get; set; }
///
/// 总条数
///
[XmlElement("total_count")]
public string TotalCount { get; set; }
///
/// 总页数
///
[XmlElement("total_page")]
public string TotalPage { get; set; }
}
}