PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

11 lines
356 B
C#
Raw Normal View History

2023-03-24 21:34:19 +04:00
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; }
}
}