using System; using System.Collections.Generic; namespace kursovaya.Models; public partial class Teacher { public int Id { get; set; } public string Fio { get; set; } = null!; public string Login { get; set; } = null!; public virtual ICollection DisciplineTeachers { get; set; } = new List(); public virtual User LoginNavigation { get; set; } = null!; }