using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.Formation
{
///
/// Statut d'une formation
///
public class StatutFormation
{
///
/// Id du statut de la formation
///
public int IdStatutFormation { get; set; }
///
/// Libellé du statut de la formation
///
public string Libelle { get; set; }
///
/// Formations qui sont liées au statut
///
public List Formations { get; set; }
}
}