using System.ComponentModel.DataAnnotations; namespace Mirea.Api.Dto.Responses; /// /// Represents detailed information about a campus. /// public class CampusDetailsResponse { /// /// Gets or sets the unique identifier of the campus. /// [Required] public int Id { get; set; } /// /// Gets or sets the code name of the campus. /// [Required] public required string CodeName { get; set; } /// /// Gets or sets the full name of the campus (optional). /// public string? FullName { get; set; } /// /// Gets or sets the address of the campus (optional). /// public string? Address { get; set; } }