Discipline.cs 324 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication5.Models;
  4. public partial class Discipline
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; } = null!;
  8. public virtual ICollection<TeacherDiscipline> TeacherDisciplines { get; set; } = new List<TeacherDiscipline>();
  9. }