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.LectureHall.Queries.GetLectureHallList;
|
||||
|
||||
public class GetLectureHallListQuery : IRequest<LectureHallListVm>
|
||||
{
|
||||
public int? Page { get; set; }
|
||||
public int? PageSize { get; set; }
|
||||
}
|
Reference in New Issue
Block a user