19 lines
568 B
VB.net
19 lines
568 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class ClassConfig
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = ""
|
|
|
|
' Folderwatch
|
|
Public Property FolderWatchStarted As Boolean = False
|
|
Public Property FolderWatchScanStarted As Boolean = False
|
|
|
|
' PDF Viewer Settings
|
|
Public Property UniversalViewerPath As String = ""
|
|
Public Property FilePreview As Boolean = True
|
|
|
|
' Misc Settings
|
|
Public Property DeleteOriginalFile As Boolean = False
|
|
Public Property LogErrorsOnly As Boolean = True
|
|
End Class
|