Add OCR import support for void critical table

This commit is contained in:
2026-03-19 23:16:09 +01:00
parent b4c8f8c142
commit 7bb0c1b8d1
35 changed files with 4379 additions and 285 deletions

View 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;
}