123456789101112131415161718192021 |
- 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<StudentsWithProgram> StudentsWithPrograms { get; set; } = new List<StudentsWithProgram>();
- }
|