using EPAServeur.Models.EP; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { public class DemandeFormation { public long Id { get; set; } public string Description { get; set; } public DateTime DateDemande { get; set; } public bool DemandeRH { get; set; } public bool? Reponse { get; set; } public string CommentaireRefus { get; set; } public DateTime DateDerniereReponse { get; set; } public Ep Ep { get; set; } public ParticipationFormation ParticipationFormation { get; set; } public OrigineFormation OrigineFormation { get; set; } } }