using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.EP
{
///
/// Nouvel objectif du collaborateur pour l’EP.
///
public class Objectif
{
///
/// Id de l’objectif
///
public long IdObjectif { get; set; }
///
/// Objectif du collaborateur
///
public string Libelle { get; set; }
///
/// EP qui est lié à l'objectif
///
public Ep Ep { get; set; }
}
}