using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.EP { public class ObjectifPrecedent { public long Id { get; set; } public string Libelle { get; set; } public bool? Atteint { get; set; } public Ep Ep { get; set; } } }