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

11 lines
352 B
C#

using PizzeriaBusinessLogic.OfficePackage.HelperEnums;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}