Tomasi - Developing 19182e7b36 - Implemented pagination for all tables to improve usability and navigation.
- Expanded the zombie siege table to display all waves survived by the entire alliance
2025-01-28 12:05:50 +01:00

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; } = [];
}