using System; using System.Collections.Generic; namespace AvaloniaApplication4.Models; public partial class WaysToChange { public int Id { get; set; } public string Name { get; set; } = null!; public virtual ICollection ProgramsWithSubjects { get; set; } = new List(); }