PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

14 lines
355 B
C#
Raw Normal View History

2024-04-07 10:17:23 +04:00
using GiftShopBusinessLogic.OfficePackage.HelperEnums;
namespace GiftShopBusinessLogic.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}