ChildDrawOperation.cs 368 B

12345678910111213141516
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.UnitTests.TestEngine.Operations
  3. {
  4. public class ChildDrawOperation : OperationBase
  5. {
  6. public string ChildId { get; }
  7. public Size Input { get; }
  8. public ChildDrawOperation(string childId, Size input)
  9. {
  10. ChildId = childId;
  11. Input = input;
  12. }
  13. }
  14. }