using System.Collections.Generic;
public static void Main()
JsonConvert.DeserializeObject<PriceList>(@"{
""Id"": ""PriceList20140201"",
""Date"": ""2014-02-01T00:00:00+01:00"",
""CurrencySymbol"": ""€"",
public string Id { get; set; }
public string Name { get; set; }
public DateTime Date { get; set; }
public string CurrencySymbol { get; set; }
public Status Status { get; set; }
public Dictionary<string, decimal> Prices { get; set; }