using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.EP { public class RdvEntretien { public int Id { get; set; } public TypeEntretien TypeEntretien { get; set; } public int EpId { get; set; } public Ep EpChoixFinal { get; set; } public Ep EpProposition { get; set; } } }