using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
'lastModifiedTime': '2018-05-03T09:55:00Z'
var property = JsonConvert.DeserializeObject<Property>(content);
Console.WriteLine(property.Name);
Console.WriteLine(property.Changeset);
Console.WriteLine(property.Id);
Console.WriteLine(property.Fields["lastModifiedTime"]);
this.Fields = new Dictionary<string, JToken>();
public string Name { get; set; }
public string Changeset { get; set; }
public string Id { get; set; }
public IDictionary<string, JToken> Fields { get; private set; }