This commit is contained in:
mmrbnjd
2024-04-02 17:14:18 +03:30
parent faa78adae6
commit dd4969f504
11 changed files with 315 additions and 402 deletions

16
Shared/DTOs/PagingDto.cs Normal file
View 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; }
}
}