StatusHolder.cs 309 B

123456789101112
  1. namespace CompServ.Worker;
  2. internal static class StatusHolder
  3. {
  4. public static string? HubServer;
  5. public static int Ratio = 1;
  6. public static int RequestIn;
  7. public static int RequestSuccess;
  8. public static int RequestOut;
  9. public static long BytesIn;
  10. public static long BytesOut;
  11. }