using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.EP
{
///
/// Participation d’un collaborateur à l’EP d’un autre collaborateur
///
public class ParticipationEP
{
///
/// Id de la participation EP
///
public long IdParticipationEP { get; set; }
///
/// Id du collaborateur participant à l’EP
///
public string IdParticipant { get; set; }
///
/// Indique si la participation est juste une participation d’un EP en cours ou des prochains EP en plus
///
public bool EstPermanente { get; set; }
///
/// EP qui est lié à la participation d'un collaborateur
///
public Ep Ep { get; set; }
}
}