9 lines
313 B
C#
9 lines
313 B
C#
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;
|
|
}
|