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