Imports System.Runtime.Serialization Namespace FileStorage.GetAttributeValue Public Class GetAttributeValueResponse Inherits Messages.BaseResponse 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