StudentsEducation.cs 310 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class StudentsEducation
  5. {
  6. public int IdEducation { get; set; }
  7. public string Name { get; set; } = null!;
  8. public virtual ICollection<Student> Students { get; set; } = new List<Student>();
  9. }