12 lines
252 B
Plaintext
12 lines
252 B
Plaintext
// Root myDeserializedClass = JsonConvert.DeserializeObject<Root>(myJsonResponse);
|
|
|
|
|
|
public class Root {
|
|
public List<Test> test { get; set; }
|
|
}
|
|
|
|
public class Test {
|
|
public List<List<int>> Mbo { get; set; }
|
|
}
|
|
|