27 lines
1.1 KiB
VB.net
27 lines
1.1 KiB
VB.net
Imports System.IO
|
|
|
|
Namespace Globix
|
|
|
|
Public Class State
|
|
Public Property DTACTUAL_FILES As DataTable
|
|
Public Property TEMP_FILES As List(Of String) = New List(Of String)
|
|
Public Property CurrMessageID As String
|
|
Public Property CurrentFolderWatchPath As String
|
|
Public Property CURRENT_SCAN_FOLDERWATCH As String
|
|
Public Property CurrentWorkfile As Models.WorkFile
|
|
Public Property INDEXING_ACTIVE As Boolean = False
|
|
Public Property NEW_FILES As Boolean = False
|
|
Public Property ABORT_INDEXING As Boolean = False
|
|
Public Property CURRENT_ISATTACHMENT As Boolean = False
|
|
Public Property DeleteOriginalFile As Boolean = False
|
|
Public Property CURRENT_LASTDOCTYPE As String
|
|
Public Property MULTIINDEXING_ACTIVE As Boolean = False
|
|
Public Property Folderwatchstarted As Boolean = False
|
|
Public Property ScanFolderwatchstarted As Boolean = False
|
|
Public Property DTEXCLUDE_FILES As DataTable
|
|
Public Property DOCUMENT_ID As Long
|
|
|
|
End Class
|
|
End Namespace
|
|
|