Files
mlb-gameday-dotnet-react/games/Queries/GetGamesQuery.cs
2023-06-01 08:52:05 -05:00

13 lines
240 B
C#

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