Zooflow: CheckInOut

This commit is contained in:
Jonathan Jenne
2022-03-28 16:42:47 +02:00
parent c833f486ac
commit ea8b4242ae
20 changed files with 696 additions and 98 deletions

View File

@@ -0,0 +1,24 @@
Imports System.Runtime.Serialization
Namespace Methods.IDB.GetFileInfo
<Serializable>
<DataContract>
Public Class GetFileInfoResponse
Inherits Messages.BaseResponse
<DataMember>
Public Property ObjectId As Long
<DataMember>
Public Property FileInfo As FileInfo
Public Sub New(pFileInfo As FileInfo)
MyBase.New()
FileInfo = pFileInfo
End Sub
Public Sub New(pException As Exception, Optional pDetails As String = "")
MyBase.New(pException, pDetails)
End Sub
End Class
End Namespace