17 lines
447 B
VB.net
17 lines
447 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class Config
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = ""
|
|
|
|
Public Property Debug As Boolean = False
|
|
Public Property IntervalInMin As Integer = 1
|
|
|
|
Public Property IgnoredLabels As List(Of String) = New List(Of String) From {
|
|
"Date", "Datum",
|
|
"ZIP", "PLZ",
|
|
"Place", "Ort",
|
|
"Position", "Stellung"
|
|
}
|
|
End Class
|