using System.Collections.Generic;
[JsonProperty(PropertyName = "field1")]
public string Field1 { get; set; }
[JsonProperty(PropertyName = "field2")]
public string Field2 { get; set; }
public class MyDataModelRoot : List<DataEntry>
public static void Main()
var m = JsonConvert.DeserializeObject<MyDataModelRoot>(json);