namespace MyNewProjectName.Contracts.DTOs.Responses;
///
/// Paginated response wrapper
///
public class PaginatedResponse
{
public List Items { get; set; } = new();
public int PageNumber { get; set; }
public int TotalPages { get; set; }
public int TotalCount { get; set; }
public bool HasPreviousPage { get; set; }
public bool HasNextPage { get; set; }
}