using System; using System.Collections.Generic; namespace AvaloniaTeachersDB.Models; public partial class TeacherCourse { public int IdTeacherCourse { get; set; } public int? IdTeacher { get; set; } public int? IdCourse { get; set; } public int? TimeHours { get; set; } public virtual Course? IdCourseNavigation { get; set; } public virtual Teacher? IdTeacherNavigation { get; set; } }