PIbd-23_Borschevskaya_A.A._.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs
2023-03-11 10:36:39 +04:00

12 lines
371 B
C#

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