16 lines
368 B
C#
16 lines
368 B
C#
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.UnitTests.TestEngine.Operations
|
|
{
|
|
public class ChildDrawOperation : OperationBase
|
|
{
|
|
public string ChildId { get; }
|
|
public Size Input { get; }
|
|
|
|
public ChildDrawOperation(string childId, Size input)
|
|
{
|
|
ChildId = childId;
|
|
Input = input;
|
|
}
|
|
}
|
|
} |