using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { public class OrigineFormation { public long Id { get; set; } public string Libelle { get; set; } public List Formations { get; set; } } }