using System; using System.Collections.Generic; namespace AvaloniaApplication3.Models; public partial class Module { public int IdModule { get; set; } public string CodeModule { get; set; } = null!; public string Name { get; set; } = null!; public virtual ICollection ProgramsWithModules { get; set; } = new List(); }