PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
2023-03-24 21:34:19 +04:00

11 lines
356 B
C#

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