Jonathan Jenne 9a3c3c2706 17.07.2023
2023-07-17 12:59:36 +02:00

22 lines
443 B
VB.net

Imports System.IO
Public Class EnvelopeDocument
Public Property Id As Integer
Public Property FileInfo As FileInfo
Public Property EnvelopeId As Integer = 0
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