11 lines
314 B
C#
11 lines
314 B
C#
|
|
namespace HardwarePerformance.Models.DTOs
|
||
|
|
{
|
||
|
|
public class PagedResultDto<T>
|
||
|
|
{
|
||
|
|
public List<T> Items { get; set; } = new();
|
||
|
|
public int Total { get; set; }
|
||
|
|
public int CurrentPage { get; set; }
|
||
|
|
public int PageSize { get; set; }
|
||
|
|
public int TotalPages { get; set; }
|
||
|
|
}
|
||
|
|
}
|