using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.Formation { public class Formation { public int Id { get; set; } public string Intitule { get; set; } public string Origine { get; set; } public DateTime DateDebut { get; set; } public DateTime DateFin { get; set; } public int Jour { get; set; } public int Heure { get; set; } public string Organisme { get; set; } public bool EstCertifiee { get; set; } public StatutFormation Statut { get; set; } } }