Major update

This commit is contained in:
2023-06-01 08:52:05 -05:00
parent d7c0f373f4
commit df84287eb2
264 changed files with 8614 additions and 964 deletions

View File

@@ -0,0 +1,13 @@
using System;
using Leagues.Entities;
using Leagues.Helpers;
using MediatR;
namespace Leagues.Queries
{
public record GetLeaguesQuery : IRequest<PagedList<League>>
{
public int PageNumber { get; set; }
public int PageSize { get; set; }
}
}