public static void Main()
'Email': 'james@example.com',
'CreatedDate': '2013-01-20T00:00:00Z',
Account account = JsonConvert.DeserializeObject<Account>(json);
Console.WriteLine(account.Active);
public string Email { get; set; }
public bool Active { get; set; }
public DateTime CreatedDate { get; set; }