using System.Collections;
using System.Collections.Generic;
public static void Main()
string json = "{\"CitationDetails\":[{\"CitationNumber\":\"00007082303\",\"DefendantName\":\"ALEXANDER. MASON CALE\" }]}";
var empResponseObj = Newtonsoft.Json.JsonConvert.DeserializeObject<Root>(json);
FiddleHelper.Dump(empResponseObj);
public class AlertMessage
public string Title { get; set; }
public string Message { get; set; }
public string Severity { get; set; }
public string Description { get; set; }
public int BilledAmount { get; set; }
public int PaidAmount { get; set; }
public class CitationDetail
public string CitationNumber { get; set; }
public string DefendantName { get; set; }
public string DateofBirth { get; set; }
public string VehicleTagNumber { get; set; }
public string CaseType { get; set; }
public string CaseStatus { get; set; }
public string AppearanceDate { get; set; }
public bool IsPayable { get; set; }
public int FineSuspended { get; set; }
public int FineServed { get; set; }
public List<AlertMessage> AlertMessages { get; set; }
public List<ItemLine> ItemLines { get; set; }
public List<CitationDetail> CitationDetails { get; set; }
public int CitationCount { get; set; }
public bool SuccessfulSearch { get; set; }
public string ErrorMessage { get; set; }