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/Models/Formation/Formation.cs

24 lines
706 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.Formation
{
public class Formation
{
public long Id { get; set; }
public string Intitule { get; set; }
public long IdAgence { get; set; }
public DateTime DateDebut { get; set; }
public DateTime DateFin { get; set; }
public long Jour { get; set; }
public long Heure { get; set; }
public string Organisme { get; set; }
public bool EstCertifiee { get; set; }
public StatutFormation Statut { get; set; }
public OrigineFormation Origine { get; set; }
public ModeFormation ModeFormation { get; set; }
public TypeFormation TypeFormation { get; set; }
}
}