I need to serialize a response of an object with a dictionary dynamically. Left the json examples.
I am trying to serialize this response object (request_validator) in a C# class, but this is not working. Can someone help me please, any ideas?
{
    "person": {
        "testing": "CC",
        "simple": "1234545",
        "errorNames": {
            "id": "655789",
            "error": "simple"
        },
        "errorColor": {
            "id": "2",
            "error": "error color"
        }
    }
}
{
    "request_validator": [
        {
            "person.errorNames": [
                "error names"
            ],
            "person.errorColor": [
                "error color"
            ]
        }
    ]
}
Code:
public class DeserializeResponse
{
    public Dictionary<string, List<string>> request_validator { get; set; }
}
var error = JsonConvert.DeserializeObject<List<DeserializeResponse>>(content);
 
     
    