Coursach/Course/BusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs
2024-05-26 23:23:24 +04:00

12 lines
337 B
C#

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