using System; using System.Collections.Generic; namespace Prak12; public partial class Course { public int IdCourse { get; set; } public string CourseName { get; set; } = null!; public int CourseHoursNumber { get; set; } public virtual ICollection TeachersCourses { get; set; } = new List(); }