Files

18 lines
481 B
C#
Raw Permalink Normal View History

using QuestPDF.Infrastructure;
namespace QuestPDF.UnitTests.TestEngine.Operations
{
2021-12-26 21:32:49 +01:00
internal class CanvasDrawStrokedRectangleOperation : OperationBase
{
public Size Size { get; }
public string Color { get; }
2021-12-26 21:32:49 +01:00
public float Width { get; set; }
public CanvasDrawStrokedRectangleOperation(Size size, string color, float width)
{
Size = size;
Color = color;
2021-12-26 21:32:49 +01:00
Width = width;
}
}
}