using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public Dictionary<string, string> State {get;set;}
public static void Main()
var jo = JObject.Parse(s);
Console.WriteLine($"{jo.ToString()}");
var model = jo.ToObject<Model>();
foreach (var kv in model!.State)
Console.WriteLine($"{kv.Key} = {kv.Value}");