kursovaya/Models/Teacher.cs
2025-04-11 13:14:28 +03:00

18 lines
433 B
C#

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<DisciplineTeacher> DisciplineTeachers { get; set; } = new List<DisciplineTeacher>();
public virtual User LoginNavigation { get; set; } = null!;
}