namespace Mirea.Api.Dto.Responses;
///
/// Represents detailed information about a faculty.
///
public class FacultyDetailsResponse
{
///
/// Gets or sets the unique identifier of the faculty.
///
public int Id { get; set; }
///
/// Gets or sets the name of the faculty.
///
public required string Name { get; set; }
///
/// Gets or sets the unique identifier of the campus to which the faculty belongs (optional).
///
public int? CampusId { get; set; }
///
/// Gets or sets the name of the campus to which the faculty belongs (optional).
///
public string? CampusName { get; set; }
///
/// Gets or sets the code name of the campus to which the faculty belongs (optional).
///
public string? CampusCode { get; set; }
}