12 lines
386 B
C#
12 lines
386 B
C#
using EnvelopeGenerator.ServiceHost.Jobs.FinalizeDocument;
|
|
|
|
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
|
|
|
public class FinalizeDocumentJobOptions
|
|
{
|
|
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();
|
|
}
|