- 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<TeacherCourse> TeacherCourses { get; set; } = new List<TeacherCourse>();
- }
|