1234567891011121314151617181920212223 |
- namespace NetworkStatsData
- {
- // Root myDeserializedClass = JsonConvert.DeserializeObject<Root>(myJsonResponse);
- public class Data
- {
- public int time { get; set; }
- public double blockTime { get; set; }
- public long difficulty { get; set; }
- public long hashrate { get; set; }
- public double usd { get; set; }
- public double btc { get; set; }
- }
- }
- namespace EthermineBotTelegram
- {
- public class NetworkStats
- {
- public string status { get; set; }
- public NetworkStatsData.Data data { get; set; }
- }
- }
|