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/ReferentEP.cs

26 lines
632 B

using EPAServeur.Models.Formation;
using EPAServeur.Models.SaisieChamp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.EP
{
/// <summary>
/// Fait correspondre à un collaborateur son référent EP pour tous ses prochains EP.
/// </summary>
public class ReferentEP
{
/// <summary>
/// Id du collaborateur dont on choisit le référent
/// </summary>
public Guid IdCollaborateur { get; set; }
/// <summary>
/// Id du référent de tous les prochains EP du collaborateur
/// </summary>
public Guid? IdReferent { get; set; }
}
}