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