namespace MoviconWebApi.Common
{
///
/// 分页信息
///
public class Pagination
{
///
/// 总条数
///
public long total { get; set; }
///
/// 当前条数
///
public int count { get; set; }
///
/// 当前页数(从1开始)
///
public int pageNo { get; set; }
///
/// 总页数
///
public int totalPage { get; set; }
///
/// 每页条数
///
public int pageSize { get; set; }
}
}