15 lines
480 B
C#
15 lines
480 B
C#
|
|
namespace Components.SaveToPdfHelpers
|
|
{
|
|
public class PdfRowParameters
|
|
{
|
|
public List<string> Texts { get; set; } = new();
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
public double? RowHeight { get; set; }
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
public string FirstCellStyle { get; set; } = string.Empty;
|
|
public PdfParagraphAlignmentType? FirstCellParagraphAlignment { get; set; }
|
|
}
|
|
}
|