You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Digitalisation_EPA_Serveur/EPAServeur/Models/EP/ParticipationEP.cs

34 lines
832 B

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