Remove JobDataKeys.cs and its string constants

The JobDataKeys.cs file was deleted, including the static class JobDataKeys and its four string constants: GdPicture, LogConfig, Database, and PdfBurnerParams. This change removes unused or redundant job data key definitions from the codebase.
This commit is contained in:
2026-02-25 13:34:04 +01:00
parent a12d74871d
commit 3b06f3fdac

View File

@@ -1,9 +0,0 @@
namespace EnvelopeGenerator.ServiceHost.Jobs;
public static class JobDataKeys
{
public const string GdPicture = "GDPICTURE";
public const string LogConfig = "LOGCONFIG";
public const string Database = "DATABASE";
public const string PdfBurnerParams = "PDF_BURNER_PARAMS";
}