- using System;
- using System.Collections.Generic;
- namespace Connect_with_base.Models;
- public partial class Discipline
- {
- public int Id { get; set; }
- public string Name { get; set; } = null!;
- public virtual ICollection<TeacherDiscipline> TeacherDisciplines { get; set; } = new List<TeacherDiscipline>();
- }
|