File Container, Prepare Import for Marvman

This commit is contained in:
Jonathan Jenne
2019-03-01 15:52:00 +01:00
parent cfbcd8a8f2
commit 6f0164d010
24 changed files with 496 additions and 306 deletions

View File

@@ -0,0 +1,12 @@
<Serializable>
Public Class DocumentObject
Public ReadOnly Property FileName As String
Public ReadOnly Property ContainerId As String
Public ReadOnly Property DocumentId As Int64
Public Sub New(ContainerId As String, DocumentId As Int64, FileName As String)
_ContainerId = ContainerId
_DocumentId = DocumentId
_FileName = FileName
End Sub
End Class