What is the most painless way to deserialize this JSON in C# using JSON.NET?
{
"serNo":{
"A4":{
"vol":[["0","100","0,1"],["0","n","0"]],
"fix":"900"
},
"A3":{
"vol":[["0","200","0,5"],["0","n","0"]],
"fix":"700"
}
}
}
To create a separate class or as collection?
EDIT: There will be multiple "serNo" properties.