diff --git a/EPAServeur/DTO/FormationDetailsDTO.cs b/EPAServeur/DTO/FormationDetailsDTO.cs
index 0a269c1..6d818e9 100644
--- a/EPAServeur/DTO/FormationDetailsDTO.cs
+++ b/EPAServeur/DTO/FormationDetailsDTO.cs
@@ -92,8 +92,8 @@ namespace IO.Swagger.DTO
///
/// Indique si la formation est certifiée ou non
[Required]
- [DataMember(Name="estCertifie")]
- public bool? EstCertifie { get; set; }
+ [DataMember(Name="estCertifiee")]
+ public bool? EstCertifiee { get; set; }
///
/// Returns the string presentation of the object
@@ -111,7 +111,7 @@ namespace IO.Swagger.DTO
sb.Append(" Organisme: ").Append(Organisme).Append("\n");
sb.Append(" NbParticipations: ").Append(NbParticipations).Append("\n");
sb.Append(" Origine: ").Append(Origine).Append("\n");
- sb.Append(" EstCertifie: ").Append(EstCertifie).Append("\n");
+ sb.Append(" EstCertifie: ").Append(EstCertifiee).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
@@ -189,9 +189,9 @@ namespace IO.Swagger.DTO
Origine.Equals(other.Origine)
) &&
(
- EstCertifie == other.EstCertifie ||
- EstCertifie != null &&
- EstCertifie.Equals(other.EstCertifie)
+ EstCertifiee == other.EstCertifiee ||
+ EstCertifiee != null &&
+ EstCertifiee.Equals(other.EstCertifiee)
);
}
@@ -221,8 +221,8 @@ namespace IO.Swagger.DTO
hashCode = hashCode * 59 + NbParticipations.GetHashCode();
if (Origine != null)
hashCode = hashCode * 59 + Origine.GetHashCode();
- if (EstCertifie != null)
- hashCode = hashCode * 59 + EstCertifie.GetHashCode();
+ if (EstCertifiee != null)
+ hashCode = hashCode * 59 + EstCertifiee.GetHashCode();
return hashCode;
}
}