Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

28 linhas
652B

  1. using System.Text.Json.Serialization;
  2. namespace Services
  3. {
  4. public class ReponseRechercheCV
  5. {
  6. public string FichierCV { get; set; } = "";
  7. public string Avis { get; set; } = "";
  8. public int Note { get; set; } = 0;
  9. public string ModeleIA { get; set; } = "";
  10. public bool PresenceSuspecte { get; set; } = false;
  11. public string VersionXML { get; set; } = "";
  12. [JsonIgnore]
  13. public string PresenceSuspecte_STR
  14. {
  15. get
  16. {
  17. if (PresenceSuspecte)
  18. return "⚠️";
  19. return "";
  20. }
  21. }
  22. }
  23. }