using System.Collections.Generic;
public static void Main()
'descricao': 'Retorna os detalhes de um produto específico.',
'url': 'http://localhost:3000/produtos/1'
var productsInfos = Newtonsoft.Json.JsonConvert.DeserializeObject<ResponseObject>(json);
Console.WriteLine(productsInfos.response.count);
Console.WriteLine(productsInfos.response.produtos[0].preco);
public string tipo { get; set; }
public string descricao { get; set; }
public string url { get; set; }
public int id_produto { get; set; }
public string produto { get; set; }
public double preco { get; set; }
public Request request { get; set; }
public int count { get; set; }
public List<Produto> produtos { get; set; }
public class ResponseObject
public Response response { get; set; }