mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-06-17 19:38:54 +00:00
12 lines
250 B
C#
12 lines
250 B
C#
namespace Application.DataTransferObjects;
|
|
|
|
public class PagedResponseDto<T>
|
|
{
|
|
public int TotalRecords { get; set; }
|
|
|
|
public int PageSize { get; set; }
|
|
|
|
public int PageNumber { get; set; }
|
|
|
|
public List<T> Data { get; set; } = [];
|
|
} |