mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-07-19 07:07:07 +08:00
11 lines
212 B
C#
11 lines
212 B
C#
![]() |
namespace UglyToad.Pdf
|
|||
|
{
|
|||
|
using Logging;
|
|||
|
|
|||
|
public class ParsingOptions
|
|||
|
{
|
|||
|
public bool UseLenientParsing { get; set; } = true;
|
|||
|
|
|||
|
public ILog Logger { get; set; } = new NoOpLog();
|
|||
|
}
|
|||
|
}
|