namespace Mirea.Api.DataAccess.Application.Cqrs.Faculty.Queries.GetFacultyDetails;
///
/// Represents faculties.
///
public class FacultyInfoVm
{
///
/// The unique identifier for the faculty.
///
public int Id { get; set; }
///
/// The name of the faculty.
///
public required string Name { get; set; }
///
/// ID indicating the faculty's affiliation to the campus.
///
public int? CampusId { get; set; }
///
/// Campus name indicating the faculty's affiliation to the campus.
///
public string? CampusName { get; set; }
///
/// Campus code indicating the faculty's affiliation to the campus.
///
public string? CampusCode { get; set; }
}