20 lines
502 B
C#
Raw Permalink Normal View History

2024-09-24 19:20:38 +04:00
using ShabComponentsLibrary.OfficePackage.HelperEnums;
namespace ShabComponentsLibrary.OfficePackage.HelperModels
{
internal class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
2024-09-24 23:54:36 +04:00
public string? FirstCellStyle { get; set; }
2024-09-24 19:20:38 +04:00
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
2024-09-24 23:54:36 +04:00
public PdfParagraphAlignmentType? FirstCellParagraphAlignment { get; set; }
public double? RowHeight { get; set; }
2024-09-24 19:20:38 +04:00
}
}