using System; using System.Collections.Generic; namespace Practikaoy.Models; public partial class TbTherCour { public int IdCic { get; set; } public int IdTher { get; set; } public int IdCours { get; set; } public int Horsses { get; set; } public virtual TbCuor IdCoursNavigation { get; set; } = null!; public virtual TbTcher IdTherNavigation { get; set; } = null!; }