Availability.cs 298 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace YtYtAvalonia.Models;
  4. public partial class Availability
  5. {
  6. public int Availabilityid { get; set; }
  7. public string Title { get; set; } = null!;
  8. public virtual ICollection<Course> Courses { get; set; } = new List<Course>();
  9. }