From 3b06f3fdac511eff1b353c6cf0413c0b7e63400e Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 25 Feb 2026 13:34:04 +0100 Subject: [PATCH] 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. --- EnvelopeGenerator.ServiceHost/Jobs/JobDataKeys.cs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 EnvelopeGenerator.ServiceHost/Jobs/JobDataKeys.cs diff --git a/EnvelopeGenerator.ServiceHost/Jobs/JobDataKeys.cs b/EnvelopeGenerator.ServiceHost/Jobs/JobDataKeys.cs deleted file mode 100644 index 44139cc2..00000000 --- a/EnvelopeGenerator.ServiceHost/Jobs/JobDataKeys.cs +++ /dev/null @@ -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"; -}