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 ""; } } } }