From 85d70c1db403fe8d96c13ab5a7c3003f03f8666c Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 7 Nov 2025 11:16:22 +0100 Subject: [PATCH] feat(PDFBurnerParams): add IndexOfAnnot-dictionary --- .../Common/Configurations/PDFBurnerParams.cs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Common/Configurations/PDFBurnerParams.cs b/EnvelopeGenerator.Application/Common/Configurations/PDFBurnerParams.cs index ff996d40..ae182638 100644 --- a/EnvelopeGenerator.Application/Common/Configurations/PDFBurnerParams.cs +++ b/EnvelopeGenerator.Application/Common/Configurations/PDFBurnerParams.cs @@ -1,5 +1,6 @@ -using System.Drawing; +using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; +using System.Drawing; namespace EnvelopeGenerator.Application.Common.Configurations; @@ -45,4 +46,16 @@ public class PDFBurnerParams /// [SuppressMessage("Interoperability", "CA1416:Validate platform compatibility", Justification = "")] public FontStyle FontStyle { get; set; } = FontStyle.Italic; + + /// + /// + /// + public Dictionary IndexOfAnnot { get; init; } = new() + { + { string.Empty, 0 }, + { "seal", 0 }, + { "position", 1 }, + { "city", 2 }, + { "date", 3 } + }; } \ No newline at end of file