namespace Mirea.Api.Dto.Responses;
///
/// Represents information about a professor.
///
public class ProfessorResponse
{
///
/// Gets or sets the unique identifier of the professor.
///
public int Id { get; set; }
///
/// Gets or sets the name of the professor.
///
public required string Name { get; set; }
///
/// Gets or sets the alternate name of the professor (optional).
///
public string? AltName { get; set; }
}