namespace Mirea.Api.Dto.Responses;
///
/// Represents detailed information about a campus.
///
public class CampusDetailsResponse
{
///
/// Gets or sets the unique identifier of the campus.
///
public int Id { get; set; }
///
/// Gets or sets the code name of the campus.
///
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; }
}