Rename FinalizeDocumentJobOptions to JobOptions

Renamed the FinalizeDocumentJobOptions class to JobOptions. Added properties for ConnectionString, GdPictureLicenseKey, Debug, and PdfBurnerParams, with appropriate default values.
This commit is contained in:
2026-02-25 11:55:35 +01:00
parent 15d4573321
commit c5d2d79563

View File

@@ -0,0 +1,11 @@
using EnvelopeGenerator.ServiceHost.Jobs.FinalizeDocument;
namespace EnvelopeGenerator.ServiceHost.Jobs;
public class JobOptions
{
public string ConnectionString { get; set; } = string.Empty;
public string GdPictureLicenseKey { get; set; } = string.Empty;
public bool Debug { get; set; }
public PDFBurnerParams PdfBurnerParams { get; set; } = new();
}