using System.Collections.Generic;
public static void Main()
""someNumber"":""111222333"",
""something"":""thisThing""
var model = JsonConvert.DeserializeObject<Item>(json);
[JsonProperty("someNumber")]
public long Number{ get; set; }
[JsonProperty("theList")]
public Dictionary<string, string> NumberList{ get; set; }
[JsonProperty("something")]
public string Something{ get; set; }