using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses; /// /// Represents the detailed response model for a lecture hall. /// public class LectureHallDetailsResponse { /// /// Gets or sets the ID of the lecture hall. /// [Required] public int Id { get; set; } /// /// Gets or sets the name of the lecture hall. /// [Required] public required string Name { get; set; } /// /// Gets or sets the ID of the campus to which the lecture hall belongs. /// [Required] public int CampusId { get; set; } /// /// Gets or sets the name of the campus. /// public string? CampusName { get; set; } /// /// Gets or sets the code of the campus. /// public string? CampusCode { get; set; } }