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.
48 lines
1.3 KiB
48 lines
1.3 KiB
4 years ago
|
/*
|
||
|
* Service Collaborateur API
|
||
|
*
|
||
|
* Api du service Collaborateur, utilisée pour récupérer les données des collaborateurs d'Apside
|
||
|
*
|
||
4 years ago
|
* OpenAPI spec version: 1.1.3
|
||
4 years ago
|
* Contact: lilian.gayet@apside-groupe.com
|
||
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||
|
*/
|
||
|
using System;
|
||
|
using System.Linq;
|
||
|
using System.IO;
|
||
|
using System.Text;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Collections.ObjectModel;
|
||
|
using System.Runtime.Serialization;
|
||
|
using Newtonsoft.Json;
|
||
|
using Newtonsoft.Json.Converters;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using SwaggerDateConverter = IO.Swagger.ClientCollaborateur.SwaggerDateConverter;
|
||
|
|
||
|
namespace IO.Swagger.ModelCollaborateur
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Defines Genre
|
||
|
/// </summary>
|
||
|
[JsonConverter(typeof(StringEnumConverter))]
|
||
|
public enum Genre
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enum FEMININ for value: FEMININ
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "FEMININ")]
|
||
|
FEMININ = 1,
|
||
|
/// <summary>
|
||
|
/// Enum MASCULIN for value: MASCULIN
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "MASCULIN")]
|
||
|
MASCULIN = 2,
|
||
|
/// <summary>
|
||
|
/// Enum NEUTRE for value: NEUTRE
|
||
|
/// </summary>
|
||
|
[EnumMember(Value = "NEUTRE")]
|
||
|
NEUTRE = 3 }
|
||
|
}
|