Coursach/Course/BusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
2024-05-26 23:23:24 +04:00

12 lines
341 B
C#

using BusinessLogic.OfficePackage.HelperEnums;
namespace BusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}