Files
QuestPDF/QuestPDF.Examples/Engine/ImageSizeAttribute.cs
T

19 lines
414 B
C#
Raw Normal View History

2021-01-16 01:31:39 +01:00
using System;
using QuestPDF.Infrastructure;
namespace QuestPDF.Examples.Engine
{
public class ImageSizeAttribute : Attribute
{
private int Width { get; }
private int Height { get; }
public Size Size => new Size(Width, Height);
public ImageSizeAttribute(int width, int height)
{
Width = width;
Height = height;
}
}
}