2023-09-13

This commit is contained in:
Jonathan Jenne
2023-09-13 10:23:50 +02:00
parent d4c010cda4
commit 5fb92fa5c8
15 changed files with 1162 additions and 80 deletions

View File

@@ -7,12 +7,19 @@
Public Property Uuid As String = Guid.NewGuid.ToString()
Public Property Subject As String
Public Property Message As String
Public Property AddedWhen As DateTime
Public Property AddedWhen As Date
Public Property User As New User()
Public Property Documents As New List(Of EnvelopeDocument)
Public Property Receivers As New List(Of EnvelopeReceiver)
Public ReadOnly Property StatusTranslated As String
Get
Dim oStatus = Status.ToString()
Return My.Resources.Model.ResourceManager.GetString(oStatus)
End Get
End Property
Public Function Validate() As List(Of String)
Dim oErrors As New List(Of String)