11 lines
281 B
C#
11 lines
281 B
C#
|
|
namespace Components.SaveToPdfHelpers
|
|
{
|
|
public class PdfRowParameters
|
|
{
|
|
public List<string> Texts { get; set; } = new();
|
|
public string Style { get; set; } = string.Empty;
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
}
|
|
}
|