Monorepo/Service.EDMIService/Methods/GetAttributeValue/GetAttributeValueResponse.vb
Jonathan Jenne 77621193f2 Zooflow: WIP
2021-12-01 16:22:51 +01:00

27 lines
637 B
VB.net

Imports System.Runtime.Serialization
Namespace Methods.GetAttributeValue
<Serializable>
<DataContract>
Public Class GetAttributeValueResponse
Inherits Messages.BaseResponse
<DataMember>
Public Property ObjectId As Long
Public Property Value As Object
Public Sub New(pObjectId As Long, pValue As Object)
MyBase.New()
ObjectId = pObjectId
Value = pValue
End Sub
Public Sub New(pException As Exception, Optional pDetails As String = "")
MyBase.New(pException, pDetails)
End Sub
End Class
End Namespace