using System; using System.Collections.Generic; namespace AvaloniaApplication3.Models; public partial class Student { public int IdStudent { get; set; } public string Name { get; set; } = null!; public string Surname { get; set; } = null!; public string Patronumic { get; set; } = null!; public int IdEducation { get; set; } public virtual EducationStudent IdEducationNavigation { get; set; } = null!; public virtual ICollection StudentsWithPrograms { get; set; } = new List(); }