08.01.2024
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
Public Property UserId As Integer
|
||||
Public Property Title As String = ""
|
||||
Public Property EnvelopeType As Integer
|
||||
Public Property ContractType As Constants.ContractType
|
||||
Public Property ContractType As Integer
|
||||
Public Property Status As Constants.EnvelopeStatus = Constants.EnvelopeStatus.EnvelopeCreated
|
||||
Public Property Uuid As String = Guid.NewGuid.ToString()
|
||||
Public Property UseAccessCode As Boolean = False
|
||||
|
||||
26
EnvelopeGenerator.Common/Entities/EnvelopeType.vb
Normal file
26
EnvelopeGenerator.Common/Entities/EnvelopeType.vb
Normal file
@@ -0,0 +1,26 @@
|
||||
Public Class EnvelopeType
|
||||
|
||||
Public Property Id As Integer = 0
|
||||
Public Property Title As String
|
||||
Public Property UseAccessCode As Boolean
|
||||
Public Property ContractType As Integer ' Unbenutzt
|
||||
|
||||
Public Property Language As String
|
||||
Public Property CertificationType As Constants.CertificationType = Constants.CertificationType.ElectronicSignature
|
||||
Public Property SendReminderEmails As Boolean = False
|
||||
Public Property FirstReminderDays As Integer = 0
|
||||
Public Property ReminderIntervalDays As Integer = 0
|
||||
|
||||
Public Property ExpiresWhen As Date
|
||||
Public Property ExpiresWarningWhen As Date
|
||||
Public Property ExpiresWhenDays As Integer
|
||||
Public Property ExpiresWarningWhenDays As Integer
|
||||
|
||||
Public Property FinalEmailToCreator As Constants.FinalEmailType
|
||||
Public Property FinalEmailToReceivers As Constants.FinalEmailType
|
||||
|
||||
Public Overrides Function ToString() As String
|
||||
Return Title
|
||||
End Function
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user