❔ Get only values when deserialize json
Hi, it's possible to deserialize something like this with only values?
I would like something like this instead of a
I would like something like this instead of a
Dictionary:Dictionary"genres": {
"Action": "Action",
"Adventure": "Aventure",
"Drama": "Drame",
"Fantasy": "Fantastique"
},[JsonPropertyName("genres")]
public List<string> Genres { get; set; }