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