Coursach/Course/BusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

12 lines
337 B
C#
Raw Normal View History

2024-05-26 23:23:24 +04:00
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; }
}
}