namespace Mirea.Api.DataAccess.Application.Cqrs.Faculty.Queries.GetFacultyList; /// /// Represents faculties. /// public class FacultyLookupDto { /// /// 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; } }