- Prioritätsbehandlung für document_path_dmz in EnvelopeService.LoadEnvelopes hinzugefügt. - CRUD-Operationen in EnvlopeDocument und ConfigurationFile Services/Repositories unter Verwendung von WebCoreModules implementiert. - Verschiedene Dateimethoden in [spezifischen Orten oder Klassen, falls zutreffend] auf async umgestellt.
22 lines
496 B
VB.net
22 lines
496 B
VB.net
Imports System.Drawing
|
|
Imports System.IO
|
|
|
|
Public Class EnvelopeDocument
|
|
Public Property Id As Integer
|
|
|
|
Public Property FileNameOriginal As String
|
|
|
|
Public Property IsTempFile As Boolean = True
|
|
|
|
Public Property EnvelopeId As Integer = 0
|
|
|
|
Public Property Thumbnail As Bitmap
|
|
|
|
Public Property Elements As New List(Of EnvelopeDocumentElement)
|
|
|
|
Public Property Filename As String
|
|
|
|
Public Property Filepath As String
|
|
|
|
Public Property PageCount As Integer
|
|
End Class |