using System; using System.Collections.Generic; namespace AvaloniaApplication4.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; } public int IdEducation { get; set; } public DateOnly Birthday { get; set; } public virtual StudentsEducation IdEducationNavigation { get; set; } = null!; public virtual ICollection ProgramsWithStudents { get; set; } = new List(); public virtual ICollection StudyListModulesStudents { get; set; } = new List(); public virtual ICollection StudyListSubjectsStudents { get; set; } = new List(); }