21 lines
678 B
VB.net
21 lines
678 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class Config
|
|
Public Property Debug As Boolean = False
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = String.Empty
|
|
|
|
Public Property Host As String = "localhost"
|
|
Public Property Port As Integer = 9000
|
|
Public Property Name As String = "JobRunner"
|
|
Public Property Windream As New WindreamConfig
|
|
|
|
Public Class WindreamConfig
|
|
Public Server As String = "localhost"
|
|
Public Username As String = "DD_ECM"
|
|
Public Password As String = "DD_ECM"
|
|
Public Domain As String = "dd-gan"
|
|
Public DriveLetter As String = "W"
|
|
End Class
|
|
End Class
|