PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

14 lines
369 B
C#
Raw Normal View History

2024-04-28 00:20:34 +04:00
using ConfectioneryBusinessLogic.OfficePackage.HelperEnums;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}