24 lines
655 B
VB.net
24 lines
655 B
VB.net
Imports System.Runtime.Serialization
|
|
|
|
Namespace Methods.Base.GetClientConfig
|
|
|
|
<Serializable>
|
|
<DataContract>
|
|
<KnownType(GetType(GlobalState.Doctype))>
|
|
Public Class GetClientConfigResponse
|
|
Inherits Messages.BaseResponse
|
|
|
|
<DataMember>
|
|
Public Property ClientConfig As GlobalState.ClientConfiguration
|
|
|
|
Public Sub New(pConfig As GlobalState.ClientConfiguration)
|
|
MyBase.New()
|
|
ClientConfig = pConfig
|
|
End Sub
|
|
|
|
Public Sub New(pException As Exception, Optional pDetails As String = "")
|
|
MyBase.New(pException, pDetails)
|
|
End Sub
|
|
End Class
|
|
|
|
End Namespace |