20 lines
599 B
VB.net
20 lines
599 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class Config
|
|
<ConnectionString>
|
|
Public Property FirebirdServer As String = ""
|
|
<ConnectionString>
|
|
Public Property FirebirdDatabase As String = ""
|
|
<ConnectionString>
|
|
Public Property FirebirdUser As String = ""
|
|
<ConnectionString>
|
|
Public Property FirebirdPassword As String = ""
|
|
|
|
<ConnectionString>
|
|
Public Property SQLServerConnectionString As String = ""
|
|
<ConnectionString>
|
|
Public Property SQLServerTestConnectionString As String = ""
|
|
|
|
Public Property Debug As Boolean = False
|
|
End Class
|