17 lines
401 B
C#
17 lines
401 B
C#
![]() |
namespace Back.Common.ViewModels
|
|||
|
{
|
|||
|
public class PagingDto<T>
|
|||
|
{
|
|||
|
public PagingDto(int RowCount, int pageCount, List<T> list)
|
|||
|
{
|
|||
|
this.RowCount = RowCount;
|
|||
|
this.list = list;
|
|||
|
PageCount = pageCount;
|
|||
|
|
|||
|
}
|
|||
|
public int RowCount { get; set; }
|
|||
|
public int PageCount { get; set; }
|
|||
|
public List<T> list { get; set; }
|
|||
|
}
|
|||
|
}
|