- 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<Student> Students { get; set; } = new List<Student>();
- }
|