ChildMeasureOperation.cs 500 B

12345678910111213141516171819
  1. using QuestPDF.Drawing.SpacePlan;
  2. using QuestPDF.Infrastructure;
  3. namespace QuestPDF.UnitTests.TestEngine.Operations
  4. {
  5. internal class ChildMeasureOperation : OperationBase
  6. {
  7. public string ChildId { get; }
  8. public Size Input { get; }
  9. public ISpacePlan Output { get; }
  10. public ChildMeasureOperation(string childId, Size input, ISpacePlan output)
  11. {
  12. ChildId = childId;
  13. Input = input;
  14. Output = output;
  15. }
  16. }
  17. }