11 lines
334 B
VB.net
11 lines
334 B
VB.net
Public Class Config
|
|
Public Property ConnectionString As String = ""
|
|
Public Property InputDirectory As String = ""
|
|
Public Property OutputDirectory As String = ""
|
|
Public Property Webservice As New WebServiceConfig()
|
|
|
|
Public Class WebServiceConfig
|
|
Public Property BaseUrl As String
|
|
End Class
|
|
End Class
|