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