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/EPAServeur/Enum/StatutObjectif.cs

37 lines
1.1 KiB

/*
* API du serveur de l'application de digitalisation des EP
*
* API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire.
*
* OpenAPI spec version: 1.3.6
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System.Runtime.Serialization;
using Newtonsoft.Json;
namespace IO.Swagger.Enum
{
/// <summary>
/// Correspond à l'état d'objectif d'un précédent EP.
/// </summary>
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum StatutObjectif
{
/// <summary>
/// L'objectif a été atteint
/// </summary>
[EnumMember(Value = "Atteint")]
Atteint = 0,
/// <summary>
/// L'objectif a été respecté partiellement
/// </summary>
[EnumMember(Value = "Partiel")]
Partiel = 1,
/// <summary>
/// L'objectif n'a pas été atteint
/// </summary>
[EnumMember(Value = "NonAtteint")]
NonAtteint = 2 }
}