Files
moadiran/Shared/DTOs/PagingDto.cs
mmrbnjd dd4969f504 ...
2024-04-02 17:14:18 +03:30

17 lines
390 B
C#

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; }
}
}