using System; using System.Collections.Generic; namespace pr13.Models; public partial class Course { public int Idcurs { get; set; } public string? Course1 { get; set; } public virtual ICollection TeachersCourses { get; set; } = new List(); }