2024-04-11 20:38:51 +04:00
|
|
|
|
using SushiBarBusinessLogic.OfficePackage.HelperEnums;
|
2024-04-11 20:52:16 +04:00
|
|
|
|
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
2024-04-11 20:38:51 +04:00
|
|
|
|
{
|
|
|
|
|
public class PdfParagraph
|
|
|
|
|
{
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|