Files

19 lines
500 B
C#
Raw Permalink Normal View History

using QuestPDF.Drawing.SpacePlan;
using QuestPDF.Infrastructure;
namespace QuestPDF.UnitTests.TestEngine.Operations
{
2021-09-18 23:40:21 +02:00
internal class ChildMeasureOperation : OperationBase
{
public string ChildId { get; }
public Size Input { get; }
public ISpacePlan Output { get; }
2021-09-18 23:40:21 +02:00
public ChildMeasureOperation(string childId, Size input, ISpacePlan output)
{
ChildId = childId;
Input = input;
Output = output;
}
}
}