11 lines
376 B
C#
11 lines
376 B
C#
using BlacksmithWorkshopBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
namespace BlacksmithWorkshopBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class PdfRowParameters
|
|
{
|
|
public List<string> Texts { get; set; } = new();
|
|
public string Style { get; set; } = string.Empty;
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
}
|
|
} |