1234567891011121314151617181920212223 |
- namespace JsonNetworkStatsData
- {
- // 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 EthermineBotTelegramCore
- {
- public class JsonNetworkStats
- {
- public string status { get; set; }
- public JsonNetworkStatsData.Data data { get; set; }
- }
- }
|