using System.Collections.Generic;
public static void Main()
""status"": ""Produzido (Codigo 3)"",
""estabelecimento_id"": 18,
""cliente_nome"": ""Marcos Manfrin"",
""estabelecimento"": ""Aquaria"",
""formas_de_pagamentos"": [
""valor_final"": ""69.00"",
""valor_total"": ""120.00"",
""valor_final"": ""69.00"",
""valor_total"": ""120.00"",
""tipo"": ""Débito Visa""
""data_venda"": ""07/06/2017"",
""nome"": ""FOTO EM ARQUIVO DIGITAL"",
""valor_custo"": ""1.00"",
""observacoes"": ""Mandar para esse e-mail: patricia_vitoriam@yahoo.com.br"",
""valor_venda"": ""20.00""
""nome"": ""FOTO EM ARQUIVO DIGITAL"",
""valor_custo"": ""1.00"",
""observacoes"": ""Mandar para esse e-mail: solange.sol@bol.com.br"",
""valor_venda"": ""20.00""
""fotografo"": ""Jaasiel Oliveira"",
var PedidosApi = JsonConvert.DeserializeObject<List<Comanda>>(json);
Console.WriteLine(PedidosApi[0].cliente_nome);
public class FormasDePagamento
public string valor_final { get; set; }
public string valor_total { get; set; }
public string tipo { get; set; }
public int quantidade { get; set; }
public string nome { get; set; }
public string valor_custo { get; set; }
public string observacoes { get; set; }
public string descricao { get; set; }
public int produto_id { get; set; }
public string valor_venda { get; set; }
public string status { get; set; }
public int estabelecimento_id { get; set; }
public string cliente_nome { get; set; }
public string estabelecimento { get; set; }
public List<FormasDePagamento> formas_de_pagamentos { get; set; }
public string apto { get; set; }
public int pedido_id { get; set; }
public string data_venda { get; set; }
public List<Item> items { get; set; }
public string comanda { get; set; }
public int fotografo_id { get; set; }
public string fotografo { get; set; }
public string codigo { get; set; }