Jonathan Jenne 48d44562f3 25-08-2023
2023-08-28 12:15:22 +02:00

26 lines
563 B
VB.net

Imports System.IO
Public Class EnvelopeDocument
Public Property Id As Integer
Public Property FileInfo As FileInfo
Public Property IsTempFile As Boolean = True
Public Property EnvelopeId As Integer = 0
Public Property Elements As New List(Of EnvelopeDocumentElement)
Public ReadOnly Property Filename As String
Get
Return FileInfo.Name
End Get
End Property
Public ReadOnly Property Filepath As String
Get
Return FileInfo.FullName
End Get
End Property
End Class