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