using IO.Swagger.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.EP { /// /// Objectif du précédent EP du collaborateur. /// public class ObjectifPrecedent { /// /// Id de l’objectif précédent /// public long IdObjectif { get; set; } /// /// Objectif précédent du collaborateur /// public string Libelle { get; set; } /// /// Statut de l’objectif /// public StatutObjectif StatutObjectif { get; set; } /// /// Commentaire du collaborateur sur l’objectif /// public string Commentaire { get; set; } /// /// EP qui est lié à l'objectif précédent /// public Ep Ep { get; set; } } }