- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class Grade
- {
- public int Id { get; set; }
- public string? Name { get; set; }
- public virtual ICollection<StudyListSubjectsStudent> StudyListSubjectsStudents { get; set; } = new List<StudyListSubjectsStudent>();
- }
|