From 1e6ad8221da8b1b75ceb2fba9a2aa7732b3b463b Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 14:58:01 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=208:=20Fully=20qualify=20the?= =?UTF-8?q?=20MSSQLServer=20type=20to=20ensure=20the=20compiler=20can=20re?= =?UTF-8?q?solve=20it,=20as=20the=20type=20is=20likely=20defined=20in=20th?= =?UTF-8?q?e=20DigitalData.Modules.Database=20namespace.=20Linie=209:=20Fu?= =?UTF-8?q?lly=20qualify=20the=20MSSQLServer=20type=20to=20ensure=20the=20?= =?UTF-8?q?compiler=20can=20resolve=20it,=20as=20the=20type=20is=20likely?= =?UTF-8?q?=20defined=20in=20the=20DigitalData.Modules.Database=20namespac?= =?UTF-8?q?e.=E2=80=9C=20in=20Datei=20=E2=80=9EZooFlow\Environment.vb?= =?UTF-8?q?=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZooFlow/Environment.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZooFlow/Environment.vb b/ZooFlow/Environment.vb index 8997a406..ac69140c 100644 --- a/ZooFlow/Environment.vb +++ b/ZooFlow/Environment.vb @@ -5,7 +5,7 @@ Public Class Environment Public Property User As New State.UserState Public Property Settings As New State.SettingsState Public Property Service As New State.ServiceState - Public Property Database As MSSQLServer - Public Property DatabaseIDB As MSSQLServer + Public Property Database As DigitalData.Modules.Database.MSSQLServer + Public Property DatabaseIDB As DigitalData.Modules.Database.MSSQLServer Public Property Modules As New Dictionary(Of String, State.ModuleState) End Class