Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- using System.Text.Json.Serialization;
-
- namespace Services
- {
- public class ReponseRechercheCV
- {
- public string FichierCV { get; set; } = "";
- public string Avis { get; set; } = "";
- public int Note { get; set; } = 0;
- public string ModeleIA { get; set; } = "";
- public bool PresenceSuspecte { get; set; } = false;
- public string VersionXML { get; set; } = "";
-
- [JsonIgnore]
- public string PresenceSuspecte_STR
- {
- get
- {
- if (PresenceSuspecte)
- return "⚠️";
- return "";
- }
- }
-
- }
-
- }
|