2023-05-26 02:11:24 +04:00
|
|
|
|
using CarServiceBusinessLogic.OfficePackage.HelperEnums;
|
2023-05-25 22:31:46 +04:00
|
|
|
|
|
2023-05-26 02:11:24 +04:00
|
|
|
|
namespace CarServiceBusinessLogic.OfficePackage.HelperModels
|
2023-05-25 22:31:46 +04:00
|
|
|
|
{
|
|
|
|
|
public class PdfRowParameters
|
|
|
|
|
{
|
|
|
|
|
public List<string> Texts { get; set; } = new();
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|