- 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<ProgramsWithSubject> ProgramsWithSubjects { get; set; } = new List<ProgramsWithSubject>();
- }
|