kursovaya/Models/Teacher.cs

18 lines
433 B
C#
Raw Normal View History

2025-04-11 10:14:28 +00:00
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!;
}