diff --git a/EnvelopeGenerator.PdfEditor/Models/PDFBurnerParams.cs b/EnvelopeGenerator.PdfEditor/Models/PDFBurnerParams.cs new file mode 100644 index 00000000..4b43b685 --- /dev/null +++ b/EnvelopeGenerator.PdfEditor/Models/PDFBurnerParams.cs @@ -0,0 +1,27 @@ +using System.Drawing; +using System.Diagnostics.CodeAnalysis; +#if NETFRAMEWORK +using System.Collections.Generic; +#endif + +namespace EnvelopeGenerator.PdfEditor.Models +{ + public class PDFBurnerParams + { + public IEnumerable IgnoredLabels { get; set; } = new List + { + "Date", "Datum", "ZIP", "PLZ", "Place", "Ort", "Position", "Stellung" + }; + + public double TopMargin { get; set; } = 0.1; + + public double YOffset { get; set; } = -0.3; + + public string FontName { get; set; } = "Arial"; + + public int FontSize { get; set; } = 8; + + [SuppressMessage("Interoperability", "CA1416:Validate platform compatibility", Justification = "")] + public FontStyle FontStyle { get; set; } = FontStyle.Italic; + } +} \ No newline at end of file