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 MdkWithModules { get; set; } = new List(); public virtual ICollection ModulesWithCompetencies { get; set; } = new List(); public virtual ICollection ProgramsWithModules { get; set; } = new List(); public virtual ICollection StudyListModulesStudents { get; set; } = new List(); }