using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { /// /// Type d’une formation. /// public class TypeFormation { /// /// Id du type de la formation /// public int IdTypeFormation { get; set; } /// /// Libellé du type de la formation /// public string Libelle { get; set; } /// /// Formations qui sont liées au type /// public List Formations { get; set; } } }