選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
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. }