// Root myDeserializedClass = JsonConvert.DeserializeObject(myJsonResponse); public class OpenClose { public string startTimeOfDay { get; set; } public string endTimeOfDay { get; set; } } public class Root { public TimeWindowDetails timeWindowDetails { get; set; } } public class TimeWindowDetails { public List openCloses { get; set; } }