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.
20 lines
514 B
20 lines
514 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EPAServeur.Models.EP
|
|
{
|
|
public class Engagement
|
|
{
|
|
public long 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; }
|
|
}
|
|
} |