16 lines
533 B
VB.net
16 lines
533 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 EmailAccountId As Integer = 0
|
|
Public Property EmailTitlePrefix As String = "EmailProfiler"
|
|
Public Property EmailSenderLimitation As String = ""
|
|
Public Property UseWindream As Boolean = False
|
|
|
|
Public Property EmailTestReceiver As String = ""
|
|
Public Property EmailTestHTML As String = ""
|
|
End Class
|