id | name | parent_id
1 | Спорт | null
2 | Футбол | 1
3 | Чемпионат РФПЛ | 2
id | tree_id | data
1 | 3 | Инфа о чемпионате РФПЛ
select * from data where tree_id=3
public class Response
{
public List<Account> response { get; set; }
}
public class Account
{
public int id { get; set; }
public string first_name { get; set; }
public string last_name { get; set; }
public string bdate { get; set; }
}
...
Response m = JsonConvert.DeserializeObject<Response>(text);