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/EP/Engagement.cs

20 lines
513 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Models.EP
{
public class Engagement
{
public int Id { get; set; }
public string Action { get; set; }
public string Disposition { get; set; }
public string Modalite { get; set; }
public DateTime DateLimite { get; set; }
public bool? Realise { get; set; }
public bool? Realisable { get; set; }
public string RaisonNonRealisable { get; set; }
public Ep Ep { get; set; }
}
}