12.01.2024

This commit is contained in:
Jonathan Jenne
2024-01-12 12:06:29 +01:00
parent c8106f4fb0
commit e0bbdf8c0e
12 changed files with 1129 additions and 1052 deletions

View File

@@ -2,7 +2,7 @@
Public Property Id As Integer = 0
Public Property UserId As Integer
Public Property Title As String = ""
Public Property EnvelopeType As Integer
Public Property EnvelopeTypeId As Integer
Public Property ContractType As Integer
Public Property Status As Constants.EnvelopeStatus = Constants.EnvelopeStatus.EnvelopeCreated
Public Property Uuid As String = Guid.NewGuid.ToString()
@@ -30,6 +30,13 @@
Public Property Documents As New List(Of EnvelopeDocument)
Public Property Receivers As New List(Of EnvelopeReceiver)
Public Property History As New List(Of EnvelopeHistoryEntry)
Public Property EnvelopeType As EnvelopeType
Public ReadOnly Property EnvelopeTypeTitle As String
Get
Return EnvelopeType.Title
End Get
End Property
Public ReadOnly Property IsAlreadySent As Boolean
Get

View File

@@ -17,4 +17,12 @@ Public Class EnvelopeDocument
Public Property Filename As String
Public Property Filepath As String
Public Property PageCount As Integer
Public ReadOnly Property PageCountTranslated As String
Get
Return $"{PageCount} Seiten"
End Get
End Property
End Class