ZUGFeRDService: Add config option MaxAttachmentSizeInMegaBytes

This commit is contained in:
Jonathan Jenne
2021-07-13 13:38:54 +02:00
parent b81d6a1314
commit d8c534c3e3
7 changed files with 70 additions and 15 deletions

View File

@@ -13,6 +13,7 @@ Public Class WorkerArgs
Public ExceptionEmailAddress As String
Public IgnoreRejectionStatus As Boolean
Public MaxAttachmentSizeInMegaBytes As Integer
Public Sub New()
WatchDirectories = New List(Of String)
@@ -26,5 +27,6 @@ Public Class WorkerArgs
ExceptionEmailAddress = Nothing
IgnoreRejectionStatus = False
MaxAttachmentSizeInMegaBytes = -1
End Sub
End Class