namespace Mirea.Api.DataAccess.Application.Cqrs.Professor.Queries.GetProfessorDetails; /// /// Represents professors. /// public class ProfessorInfoVm { /// /// The unique identifier for the professor. /// public int Id { get; set; } /// /// The name of the professor. /// public required string Name { get; set; } /// /// The alt name of the professor. Usually is full name. /// public string? AltName { get; set; } }