feat: add queries for the discipline
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m28s

This commit is contained in:
2024-01-28 05:59:48 +03:00
parent bc99007d94
commit a1a83ce2e6
7 changed files with 117 additions and 0 deletions

View File

@ -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; }
}