TbCuor.cs 299 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Practikaoy.Models;
  4. public partial class TbCuor
  5. {
  6. public int IdCours { get; set; }
  7. public string NameCours { get; set; } = null!;
  8. public virtual ICollection<TbTherCour> TbTherCours { get; set; } = new List<TbTherCour>();
  9. }