using System; using System.Collections.Generic; namespace TeacheresAndCourses.Models; public partial class Course { public int Courseid { get; set; } public string Title { get; set; } = null!; public virtual ICollection TeachersAndCourses { get; set; } = new List(); }