12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class Module
- {
- public int IdModule { get; set; }
- public string CodeModule { get; set; } = null!;
- public string Name { get; set; } = null!;
- public int IdTrainingStandarts { get; set; }
- public virtual TrainingStandart IdTrainingStandartsNavigation { get; set; } = null!;
- public virtual ICollection<MdkWithModule> MdkWithModules { get; set; } = new List<MdkWithModule>();
- public virtual ICollection<ModulesWithCompetency> ModulesWithCompetencies { get; set; } = new List<ModulesWithCompetency>();
- public virtual ICollection<ProgramsWithModule> ProgramsWithModules { get; set; } = new List<ProgramsWithModule>();
- public virtual ICollection<StudyListModulesStudent> StudyListModulesStudents { get; set; } = new List<StudyListModulesStudent>();
- }
|