12 lines
358 B
VB.net
12 lines
358 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"
|
|
End Class
|