17 lines
553 B
VB.net
17 lines
553 B
VB.net
Imports DigitalData.Modules.Config.ConfigAttributes
|
|
|
|
Public Class ClassConfig
|
|
' Global Settings (from computerconfig, overridable by userconfig)
|
|
<ConnectionString>
|
|
Public Property ConnectionString As String = ""
|
|
Public Property WMUsername As String = ""
|
|
Public Property WMUserPW As String = ""
|
|
Public Property WMDrive As String = "W"
|
|
Public Property WMRelPath As String = ""
|
|
Public Property WMServer As String = ""
|
|
Public Property Domain As String = ""
|
|
Public Property LOG_DEBUG As Boolean = False
|
|
|
|
|
|
End Class
|