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:
11
EnvelopeGenerator.ServiceHost/Jobs/JobOptions.cs
Normal file
11
EnvelopeGenerator.ServiceHost/Jobs/JobOptions.cs
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user