Major update
This commit is contained in:
14
seasons/Queries/GetSeasonsQuery.cs
Normal file
14
seasons/Queries/GetSeasonsQuery.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using MediatR;
|
||||
using Seasons.Entities;
|
||||
using Seasons.Helpers;
|
||||
|
||||
namespace Seasons.Queries
|
||||
{
|
||||
public record GetSeasonsQuery : IRequest<PagedList<Season>>
|
||||
{
|
||||
public int PageNumber { get; set; }
|
||||
public int PageSize { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user