There's a simpler way to do this. You don't need to create a new class. Simply do:
DataTable dataTable = (DataTable)JsonConvert.DeserializeObject(jsonString, (typeof(DataTable)));
dataGridView.DataSource = dataTable;
No need for a custom class. You'll still need Newtonsoft though.