123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- namespace JsonWorkerData
- {
- public class Data
- {
- public string worker { get; set; }
- public long time { get; set; }
- public long lastSeen { get; set; }
- public long reportedHashrate { get; set; }
- public double currentHashrate { get; set; }
- public int validShares { get; set; }
- public int invalidShares { get; set; }
- public int staleShares { get; set; }
- public double averageHashrate { get; set; }
- }
- }
- namespace EthermineBotTelegramCore
- {
- public class JsonWorker
- {
- public string status { get; set; }
- public List<JsonWorkerData.Data> data { get; set; }
- }
-
- }
|