using System; using System.Collections.Generic; namespace Teachers.Models; public partial class TeacherCourse { public int IdTeacher { get; set; } public int IdCourse { get; set; } public int IdTc { get; set; } public virtual Course IdCourseNavigation { get; set; } = null!; public virtual Teacher IdTeacherNavigation { get; set; } = null!; }