JobRunner: Update to use tables
This commit is contained in:
25
Service.JobRunner/Config.vb
Normal file
25
Service.JobRunner/Config.vb
Normal file
@@ -0,0 +1,25 @@
|
||||
Imports DigitalData.Modules.Jobs
|
||||
|
||||
Public Class Config
|
||||
Public Property Debug As Boolean = False
|
||||
|
||||
Public Property SQLConnectionString As String = ""
|
||||
|
||||
Public Property Firebird As New FirebirdConfig
|
||||
Public Property Jobs As New List(Of JobConfig)
|
||||
|
||||
'Public Enum JobType
|
||||
' ADSync
|
||||
' GraphQL
|
||||
' Test
|
||||
'End Enum
|
||||
|
||||
|
||||
|
||||
Public Class FirebirdConfig
|
||||
Public Property DataSource As String = "172.24.12.41"
|
||||
Public Property Database As String = "172.24.12.41:E:\DB\Firebird\Databases\EDMI_TEMPLATE\EDMI_MASTER.FDB"
|
||||
Public Property User As String = "sysdba"
|
||||
Public Property Password As String = "dd"
|
||||
End Class
|
||||
End Class
|
||||
Reference in New Issue
Block a user