Coursach/Course/BusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

12 lines
341 B
C#
Raw Normal View History

2024-05-26 23:23:24 +04:00
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; }
}
}