20-09-2023

This commit is contained in:
Jonathan Jenne
2023-09-20 13:42:24 +02:00
parent 12556e41e4
commit 446bcfeb9e
21 changed files with 399 additions and 78 deletions

View File

@@ -4,8 +4,6 @@ Imports System.IO
Public Class EnvelopeDocument
Public Property Id As Integer
Public Property FileInfo As FileInfo
Public Property FileNameOriginal As String
Public Property IsTempFile As Boolean = True
@@ -16,15 +14,7 @@ Public Class EnvelopeDocument
Public Property Elements As New List(Of EnvelopeDocumentElement)
Public ReadOnly Property Filename As String
Get
Return FileInfo.Name
End Get
End Property
Public Property Filename As String
Public ReadOnly Property Filepath As String
Get
Return FileInfo.FullName
End Get
End Property
Public Property Filepath As String
End Class

View File

@@ -0,0 +1,4 @@
Public Class EnvelopeResponse
Public Property Envelope As Envelope
Public Property ReceiverId As Integer
End Class