I need some help to convert this kind of JSON object in to c# classes so than I can Deserialize it
Here how it looks:
{
"Result":{
"test_one":"test",
"test_two":"test",
"main":[
{
"@attributes":{
"ID":"1",
"Name":"test1"
}
},
{
"@attributes":{
"ID":"2",
"Name":"test2"
}
}
]
}
}