using System.Collections.Generic;
static void Main(string[] args)
string file = "{\"status\":\"ok\",\"meta\":{\"count\":1},\"data\":{\"507888780\":[{\"all\":{\"spotted\":467,\"hits_percents\":83,\"wins\":281,},\"tank_id\":2849},{\"all\":{\"spotted\":224,\"hits_percents\":63,\"wins\":32,},\"tank_id\":9473}]}}";
Rootobject rootobject = JsonConvert.DeserializeObject<Rootobject>(file);
Console.WriteLine(rootobject.data._507888780[0].tank_id);
Console.WriteLine(rootobject.data._507888780[0].all.hits_percents);
public string status { get; set; }
public Meta meta { get; set; }
public Data data { get; set; }
public int count { get; set; }
public _507888780[] _507888780 { get; set; }
public All all { get; set; }
public int tank_id { get; set; }
public int spotted { get; set; }
public int hits_percents { get; set; }
public int wins { get; set; }