From 03100e1a2a5cd3a6be98be3b4233b2df07fbc42a Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 4 Dec 2023 10:43:54 +0100 Subject: [PATCH] add export path --- EnvelopeGenerator.Common/Entities/DbConfig.vb | 1 + EnvelopeGenerator.Common/Models/ConfigModel.vb | 1 + 2 files changed, 2 insertions(+) diff --git a/EnvelopeGenerator.Common/Entities/DbConfig.vb b/EnvelopeGenerator.Common/Entities/DbConfig.vb index b488f7bd..188f63a4 100644 --- a/EnvelopeGenerator.Common/Entities/DbConfig.vb +++ b/EnvelopeGenerator.Common/Entities/DbConfig.vb @@ -1,6 +1,7 @@ Public Class DbConfig Public Property ExternalProgramName As String = "Sign Flow" Public Property DocumentPath As String = "" + Public Property ExportPath As String = "" Public Property SendingProfile As Integer = 0 Public Property SignatureHost As String = "" End Class diff --git a/EnvelopeGenerator.Common/Models/ConfigModel.vb b/EnvelopeGenerator.Common/Models/ConfigModel.vb index c5fd1f89..b775ebd0 100644 --- a/EnvelopeGenerator.Common/Models/ConfigModel.vb +++ b/EnvelopeGenerator.Common/Models/ConfigModel.vb @@ -17,6 +17,7 @@ Public Class ConfigModel Return New DbConfig() With { .DocumentPath = oRow.ItemEx("DOCUMENT_PATH", ""), + .ExportPath = oRow.ItemEx("EXPORT_PATH", ""), .SendingProfile = oRow.ItemEx("SENDING_PROFILE", 0), .SignatureHost = oRow.ItemEx("SIGNATURE_HOST", ""), .ExternalProgramName = oRow.ItemEx("EXTERNAL_PROGRAM_NAME", "")