PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs
VanyaAlekseev faff28c524 ух
2024-04-28 00:20:34 +04:00

14 lines
365 B
C#

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