using System; using System.Collections.Generic; namespace AvaloniaApplicationBase.Models; public partial class Course { public int Id { get; set; } public string Name { get; set; } = null!; public string? Time { get; set; } public virtual ICollection TeacherCourses { get; set; } = new List(); }