14 lines
405 B
C#
Raw Normal View History

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