11 lines
254 B
C#
11 lines
254 B
C#
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Elements.Table
|
|
{
|
|
internal class TableCellRenderingCommand
|
|
{
|
|
public TableCell Cell { get; set; }
|
|
public Size Size { get; set; }
|
|
public Position Offset { get; set; }
|
|
}
|
|
} |