PdfPig/src/UglyToad.Pdf/ParsingOptions.cs

11 lines
212 B
C#
Raw Normal View History

namespace UglyToad.Pdf
{
using Logging;
public class ParsingOptions
{
public bool UseLenientParsing { get; set; } = true;
public ILog Logger { get; set; } = new NoOpLog();
}
}