2024-02-16 22:51:26 +03:00
|
|
|
|
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>
|
2024-12-25 05:43:30 +03:00
|
|
|
|
public IEnumerable<LectureHallLookupDto> LectureHalls { get; set; } = [];
|
2024-02-16 22:51:26 +03:00
|
|
|
|
}
|