using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.Formation
{
///
/// Origine d’une formation.
///
public class OrigineFormation
{
///
/// Id de l’origine de la formation
///
public int IdOrigineFormation { get; set; }
///
/// Libellé de l’origine de la formation
///
public string Libelle { get; set; }
///
/// Formations qui sont liées à l'origine
///
public List Formations { get; set; }
}
}