12 lines
255 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; }
}