feat: add queries for lecture hall
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m42s
All checks were successful
.NET Test Pipeline / build-and-test (pull_request) Successful in 1m42s
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Mirea.Api.DataAccess.Application.Cqrs.LectureHall.Queries.GetLectureHallList;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a view model containing multiple disciplines name.
|
||||
/// </summary>
|
||||
public class LectureHallListVm
|
||||
{
|
||||
/// <summary>
|
||||
/// The list of lecture hall.
|
||||
/// </summary>
|
||||
public IList<LectureHallLookupDto> LectureHalls { get; set; } = new List<LectureHallLookupDto>();
|
||||
}
|
Reference in New Issue
Block a user