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

11 lines
352 B
C#
Raw Normal View History

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