using System.Collections.Generic;

namespace Mirea.Api.DataAccess.Domain.Schedule;

public class Professor
{
    public int Id { get; set; }
    public required string Name { get; set; }
    public string? AltName { get; set; }

    public List<LessonAssociation>? LessonAssociations { get; set; }
}