refactor: move database-related projects to separate folder
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