- using System;
- using System.Collections.Generic;
- namespace Practikaoy.Models;
- public partial class TbCuor
- {
- public int IdCours { get; set; }
- public string NameCours { get; set; } = null!;
- public virtual ICollection<TbTherCour> TbTherCours { get; set; } = new List<TbTherCour>();
- }
|