12 lines
359 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
using UniversityBusinessLogics.OfficePackage.HelperEnums;
namespace UniversityBusinessLogics.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}