19 lines
488 B
C#
19 lines
488 B
C#
using QuestPDF.Drawing;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.UnitTests.TestEngine.Operations
|
|
{
|
|
internal class ChildMeasureOperation : OperationBase
|
|
{
|
|
public string ChildId { get; }
|
|
public Size Input { get; }
|
|
public SpacePlan Output { get; }
|
|
|
|
public ChildMeasureOperation(string childId, Size input, SpacePlan output)
|
|
{
|
|
ChildId = childId;
|
|
Input = input;
|
|
Output = output;
|
|
}
|
|
}
|
|
} |