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