using System.Drawing;
using System.Diagnostics.CodeAnalysis;
namespace EnvelopeGenerator.Application.Common.Configurations;
///
///
///
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;
}