using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums; namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels { public class PdfRowParameters { // Набор текстов public List Texts { get; set; } = new(); // Стиль к текстам public string Style { get; set; } = string.Empty; // Как выравниваем public PdfParagraphAlignmentType ParagraphAlignment { get; set; } } }