From 584755ea93aca8e51a03c5f51608e25eb2eaceea Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Fri, 18 Aug 2023 12:29:21 +0200 Subject: [PATCH] Cleanup --- app/Updates.cs | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/app/Updates.cs b/app/Updates.cs index 2681556f..d1138153 100644 --- a/app/Updates.cs +++ b/app/Updates.cs @@ -7,15 +7,6 @@ using System.Text.Json; 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 { //static int rowCount = 0; @@ -24,7 +15,14 @@ namespace GHelper static int updatesCount = 0; 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) {