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