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 PdfParagraph { /// /// Текст абзаца /// public string Text { get; set; } = string.Empty; /// /// Стиль текста /// public string Style { get; set; } = string.Empty; /// /// Тип выравнивания текста /// public PdfParagraphAlignmentType ParagraphAlignment { get; set; } } }