using Newtonsoft.Json.Linq;
using System.Collections.Generic;
public static void Main(string[] args) {
""assignedto"": ""MAIN ST (HUB) STAFF"",
""createduser"": ""API-7127"",
""abnormalflag"": ""abnormal"",
""analytename"": ""HGB A1C"",
var resultObj = JsonConvert.DeserializeObject<List<Rootobject>>(json);
Rootobject result = resultObj[0];
Class1[] classResults = result.Property1;
Console.WriteLine(classResults[0].assignedto);
public Class1[] Property1 { get; set; }
public string assignedto { get; set; }
public string createduser { get; set; }
public string departmentid { get; set; }
public Observation[] observations { get; set; }
public object[] pages { get; set; }
public string priority { get; set; }
public string status { get; set; }
public string abnormalflag { get; set; }
public string analytename { get; set; }
public string value { get; set; }