using System.Collections.Generic;
public string Media { get; set; }
public string Lote { get; set; }
public string Sinal { get; set; }
public List<Opcao> Opcao { get; set; }
public string __type { get; set; }
public string Leitura { get; set; }
public string Producao { get; set; }
public static void Main()
string json = @"{'d':{'media':12.108320606149539,'lote':'','Opcao':[{'__type':'Model','leitura':70,'producao':1579981660130}],'sinal':'Up'}}";
myObj = JsonConvert.DeserializeObject<Obj>(json);
Console.WriteLine(myObj.D.Media);