namespace Mirea.Api.DataAccess.Application.Cqrs.LectureHall.Queries.GetLectureHallDetails; /// /// Represents disciplines. /// public class LectureHallInfoVm { /// /// The unique identifier for the lecture hall. /// public int Id { get; set; } /// /// The name of the lecture hall. /// public required string Name { get; set; } /// /// ID indicating the lecture hall's affiliation to the campus. /// public int CampusId { get; set; } /// /// Campus name indicating the lecture hall's affiliation to the campus. /// public string? CampusName { get; set; } /// /// Campus code indicating the lecture hall's affiliation to the campus. /// public string? CampusCode { get; set; } }