using System; using Games.Entities; using Games.Helpers; using MediatR; namespace Games.Queries { public record GetGamesQuery : IRequest> { public int PageNumber { get; set; } public int PageSize { get; set; } } }