mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +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; } = [];
|
|
} |