I am getting JSON data from the server like as below
[
{
"Users" : [],
"Validate":"false",
"Employees": [
[
{
"name" : "ram"
"email" : "ram@gmail.com"
}
],
[],
[]
]
}
]
Now I want to deserialize the above data and want to get user,validate and employees separately. for now I am using below code
model mdl = JsonConvert.DeserializeObject<model>(jsondata)