PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
Arkadiy Radaev 6d165aa782 res4
2024-04-07 10:17:23 +04:00

14 lines
359 B
C#

using GiftShopBusinessLogic.OfficePackage.HelperEnums;
namespace GiftShopBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}