feat: add queries for the discipline
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
using MediatR;
|
||||
|
||||
namespace Mirea.Api.DataAccess.Application.Cqrs.Discipline.Queries.GetDisciplineList;
|
||||
|
||||
public class GetDisciplineListQuery : IRequest<DisciplineListVm>
|
||||
{
|
||||
public int? Page { get; set; }
|
||||
public int? PageSize { get; set; }
|
||||
}
|
Reference in New Issue
Block a user