using System; using System.Collections.Generic; namespace YtYtAvalonia.Models; public partial class Availability { public int Availabilityid { get; set; } public string Title { get; set; } = null!; public virtual ICollection Courses { get; set; } = new List(); }