Renamed the FinalizeDocumentJobOptions class to JobOptions. Added properties for ConnectionString, GdPictureLicenseKey, Debug, and PdfBurnerParams, with appropriate default values.
12 lines
370 B
C#
12 lines
370 B
C#
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();
|
|
}
|