Jonathan Jenne b63655b212 06-07-2023
2023-07-06 14:24:30 +02:00

20 lines
404 B
VB.net

Imports System.IO
Public Class EnvelopeFile
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