using AircraftPlantBusinessLogic.OfficePackage.HelperEnums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels { /// /// Модель для передачи данных /// для создания строки Pdf-файла /// public class PdfRowParameters { /// /// Список текстов /// public List Texts { get; set; } = new(); /// /// Стиль текста /// public string Style { get; set; } = string.Empty; /// /// Тип выравнивания текста /// public PdfParagraphAlignmentType ParagraphAlignment { get; set; } } }