namespace Mirea.Api.DataAccess.Application.Cqrs.LectureHall.Queries.GetLectureHallList;
///
/// Represents lecture halls.
///
public class LectureHallLookupDto
{
///
/// 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; }
}