using System; using System.Collections.Generic; namespace AvaloniaApplication4.Models; public partial class StudentsEducation { public int IdEducation { get; set; } public string Name { get; set; } = null!; public virtual ICollection Students { get; set; } = new List(); }