using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses; /// /// Represents the response model for a lecture hall. /// public class LectureHallResponse { /// /// 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; } }