using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { /// /// Raison pour laquelle la demande de formation a été faite. /// public class OrigineDemande { /// /// Id de l’origine de la demande de formation /// public int IdOrigineDemande { get; set; } /// /// Libellé de l’origine de la demande de formation /// public string Libelle { get; set; } } }