using System.Collections.Generic;
|
|
namespace FineAdmin.Repository
|
{
|
public class PageDataView<T>
|
{
|
private int _TotalNum;
|
public PageDataView()
|
{
|
this._Items = new List<T>();
|
}
|
public int TotalNum
|
{
|
get { return _TotalNum; }
|
set { _TotalNum = value; }
|
}
|
private IList<T> _Items;
|
public IList<T> Items
|
{
|
get { return _Items; }
|
set { _Items = value; }
|
}
|
public int CurrentPage { get; set; }
|
public int TotalPageCount { get; set; }
|
}
|
}
|