Add OCR import support for void critical table
This commit is contained in:
8
src/RolemasterDb.ImportTool/PdfDocumentInfo.cs
Normal file
8
src/RolemasterDb.ImportTool/PdfDocumentInfo.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace RolemasterDb.ImportTool;
|
||||
|
||||
public sealed class PdfDocumentInfo(int pageCount, double pageWidthPoints, double pageHeightPoints)
|
||||
{
|
||||
public int PageCount { get; } = pageCount;
|
||||
public double PageWidthPoints { get; } = pageWidthPoints;
|
||||
public double PageHeightPoints { get; } = pageHeightPoints;
|
||||
}
|
||||
Reference in New Issue
Block a user