2021-09-02 21:48:20 +02:00
|
|
|
using QuestPDF.Drawing;
|
2021-02-08 14:36:12 +01:00
|
|
|
using QuestPDF.Infrastructure;
|
|
|
|
|
|
|
|
|
|
namespace QuestPDF.UnitTests.TestEngine.Operations
|
|
|
|
|
{
|
2021-10-01 02:32:35 +02:00
|
|
|
internal class ChildMeasureOperation : OperationBase
|
2021-02-08 14:36:12 +01:00
|
|
|
{
|
|
|
|
|
public string ChildId { get; }
|
|
|
|
|
public Size Input { get; }
|
2021-09-02 21:48:20 +02:00
|
|
|
public SpacePlan Output { get; }
|
2021-02-08 14:36:12 +01:00
|
|
|
|
2021-10-01 02:32:35 +02:00
|
|
|
public ChildMeasureOperation(string childId, Size input, SpacePlan output)
|
2021-02-08 14:36:12 +01:00
|
|
|
{
|
|
|
|
|
ChildId = childId;
|
|
|
|
|
Input = input;
|
|
|
|
|
Output = output;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|