2 Commits

Author SHA1 Message Date
Developer01
3b9c9d457d Logging und Vorbereitung MAPPING wie in taskFLOW 2026-05-04 16:40:14 +02:00
Developer01
e5567412a0 MapFilehandler in Environment 2026-04-30 16:17:14 +02:00
2 changed files with 4 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
Imports DigitalData.Modules.Database
Public Class Environment
Public Property User As New State.UserState
Public Property Settings As New State.SettingsState
@@ -7,10 +6,4 @@ Public Class Environment
Public Property Database As MSSQLServer
Public Property DatabaseIDB As MSSQLServer
Public Property Modules As New Dictionary(Of String, State.ModuleState)
Public Class Filehandling
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

View File

@@ -1,5 +1,9 @@
Namespace State
Public Class SettingsState
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 Namespace