...
This commit is contained in:
16
Shared/DTOs/PagingDto.cs
Normal file
16
Shared/DTOs/PagingDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Shared.DTOs
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user