// Вот Json, с которым я сейчас работаю ..
{
"groups": null,
"data": [{
"type": 123,
"name": "Name123"
},
{
"type": 567,
"name": "SecondName"
}
],
"total": 2
}
// вот класс модели, в котором я хочу десериализовать "данные" последнего объекта, включая "группу" и также всего
public class JsonModel
{
public class Data
{
public int type { get; set; }
public string name { get; set; }
}
public object groups { get; set; }
public Date[] data { get; set; }
public int total { get; set; }
}
//FYI using RestSharp to perform the request
response = HttpGet("Url")
parsedResponse = JToken.Parse(response.content);
JsonModel.Date expectedData = JsonConvert.DeserializeObject<JsonModel.Date>
(parsedResponse["data"].Last.ToString());
//After deserialzing I only get the type and name.. how to also get the groups and total here in my JsonModel to correctly map it.. I understand I am deserializing to JsonModel.Date thats why.. but how can I include the total and groups property..