Student.cs 561 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication3.Models;
  4. public partial class Student
  5. {
  6. public int IdStudent { get; set; }
  7. public string Name { get; set; } = null!;
  8. public string Surname { get; set; } = null!;
  9. public string Patronumic { get; set; } = null!;
  10. public int IdEducation { get; set; }
  11. public virtual EducationStudent IdEducationNavigation { get; set; } = null!;
  12. public virtual ICollection<StudentsWithProgram> StudentsWithPrograms { get; set; } = new List<StudentsWithProgram>();
  13. }