using System; using System.Collections.Generic; namespace N11_1.Models; public partial class TbTeachersCourse { public int Id { get; set; } public int IdTeacher { get; set; } public int IdCourses { get; set; } public int Hours { get; set; } public virtual TbCourse IdCoursesNavigation { get; set; } = null!; public virtual TbTeacher IdTeacherNavigation { get; set; } = null!; }