2024-05-28 17:08:06 +04:00
|
|
|
|
using UniversityBusinessLogic.OfficePackage.HelperEnums;
|
2024-05-01 20:40:47 +04:00
|
|
|
|
|
2024-05-28 17:08:06 +04:00
|
|
|
|
namespace UniversityBusinessLogic.OfficePackage.HelperModels
|
2024-05-01 20:40:47 +04:00
|
|
|
|
{
|
|
|
|
|
public class PdfParagraph
|
|
|
|
|
{
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|