This commit is contained in:
Serge
2023-08-18 12:29:21 +02:00
parent 3652e4d0ff
commit 584755ea93

View File

@@ -7,15 +7,6 @@ using System.Text.Json;
namespace GHelper namespace GHelper
{ {
public struct DriverDownload
{
public string categoryName;
public string title;
public string version;
public string downloadUrl;
public JsonElement hardwares;
}
public partial class Updates : RForm public partial class Updates : RForm
{ {
//static int rowCount = 0; //static int rowCount = 0;
@@ -24,7 +15,14 @@ namespace GHelper
static int updatesCount = 0; static int updatesCount = 0;
private static long lastUpdate; private static long lastUpdate;
public struct DriverDownload
{
public string categoryName;
public string title;
public string version;
public string downloadUrl;
public JsonElement hardwares;
}
private void LoadUpdates(bool force = false) private void LoadUpdates(bool force = false)
{ {