using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// 分页数据泛型类
///
///
public class PageData where T : class, new()
{
///
/// 总记录数
///
public int Total { get; set; }
///
/// 当前页数据集合
///
public List Rows { get; set; }
///
/// 页数
///
public int Count { get; set; }
public PageData()
{
}
public PageData(int Total, int Count, List Rows = null)
{
this.Total = Total;
this.Count = Count;
this.Rows = Rows;
}
}
}