28 lines
886 B
VB.net
28 lines
886 B
VB.net
Public Class Config
|
|
Public Property Hostname As String = ""
|
|
Public Property Port As String = ""
|
|
Public Property Username As String = ""
|
|
Public Property Password As String = ""
|
|
|
|
Public Property ConnectionString As String = ""
|
|
''' <summary>
|
|
''' This query must contain two placeholders:
|
|
'''
|
|
''' - {0} for ExtDocId
|
|
''' - {1} for Filename
|
|
''' </summary>
|
|
Public Property SQLQueryExport As String = ""
|
|
''' <summary>
|
|
''' This query needs to return a table with exactly one column, which represents the ExtDocId
|
|
''' </summary>
|
|
Public Property SQLQueryFetch As String = ""
|
|
|
|
Public Property OutputDirectory As String = ""
|
|
Public Property TimerIntervalMin As Integer = 10
|
|
|
|
Public Property SystemId As String = ""
|
|
|
|
Public Property Debug As Boolean = False
|
|
Public Property Autostart As Boolean = True
|
|
End Class
|