CanvasDrawStrokedRectangleOperation.cs 481 B

123456789101112131415161718
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.UnitTests.TestEngine.Operations
  3. {
  4. internal class CanvasDrawStrokedRectangleOperation : OperationBase
  5. {
  6. public Size Size { get; }
  7. public string Color { get; }
  8. public float Width { get; set; }
  9. public CanvasDrawStrokedRectangleOperation(Size size, string color, float width)
  10. {
  11. Size = size;
  12. Color = color;
  13. Width = width;
  14. }
  15. }
  16. }