1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication3.Models;
- public partial class ModulesStudentsStudyList
- {
- public int IdStudent { get; set; }
- public int IdModule { get; set; }
- public int? Grade { get; set; }
- public virtual ProgramsWithModule IdModuleNavigation { get; set; } = null!;
- public virtual StudentsWithProgram IdStudentNavigation { get; set; } = null!;
- }
|