using Newtonsoft.Json;
using System.Collections.Generic;
public class Root
{
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("price")]
public double Price { get; set; }
[JsonProperty("profile")]
public Profile Profile { get; set; }
[JsonProperty("tags")]
public List<string> Tags { get; set; }
[JsonProperty("missing")]
public object Missing { get; set; }
}
public class Profile
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("active")]
public bool Active { get; set; }
}