using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.EP { public class Engagement { public long Id { get; set; } public string Action { get; set; } public string Disposition { get; set; } public string Modalite { get; set; } public DateTime DateLimite { get; set; } public bool? Realise { get; set; } public bool? Realisable { get; set; } public string RaisonNonRealisable { get; set; } public Ep Ep { get; set; } } }