22 lines
749 B
VB.net
22 lines
749 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
|
|
|
|
' Index Form Settings
|
|
Public Property FilePreview As Boolean = True
|
|
Public Property SplitterDistanceViewer As Integer = 500
|
|
Public Property ProfilePreselection As Boolean = False
|
|
Public Property ShowIndexResult As Boolean = True
|
|
Public Property DeleteOriginalFile As Boolean = False
|
|
|
|
' Misc Settings
|
|
Public Property LogErrorsOnly As Boolean = True
|
|
Public Property WindreamSearchMaximized As Boolean = False
|
|
End Class
|