Logging und Vorbereitung MAPPING wie in taskFLOW

This commit is contained in:
Developer01
2026-05-04 16:40:14 +02:00
parent e5567412a0
commit 3b9c9d457d
2 changed files with 4 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
Imports DigitalData.Modules.Database Imports DigitalData.Modules.Database
Public Class Environment Public Class Environment
Public Property User As New State.UserState Public Property User As New State.UserState
Public Property Settings As New State.SettingsState Public Property Settings As New State.SettingsState
@@ -7,10 +6,4 @@ Public Class Environment
Public Property Database As MSSQLServer Public Property Database As MSSQLServer
Public Property DatabaseIDB As MSSQLServer Public Property DatabaseIDB As MSSQLServer
Public Property Modules As New Dictionary(Of String, State.ModuleState) Public Property Modules As New Dictionary(Of String, State.ModuleState)
Public Class MapFilehandler
Public CopyWMFile2Temp As Boolean = False
Public WM_SUFFIX As String = "\\WINDREAM\OBJECTS"
Public MAP_SHAREDRIVE As String = ""
Public MAP_BLACKLIST As String = ""
End Class
End Class End Class

View File

@@ -1,5 +1,9 @@
Namespace State Namespace State
Public Class SettingsState Public Class SettingsState
Public GdPictureKey As String = String.Empty Public GdPictureKey As String = String.Empty
Public CopyWMFile2Temp As Boolean = False
Public WM_SUFFIX As String = "\\WINDREAM\OBJECTS"
Public MAP_SHAREDRIVE As String = ""
Public MAP_BLACKLIST As String = ""
End Class End Class
End Namespace End Namespace