PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

13 lines
366 B
C#

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