PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

32 lines
908 B
C#
Raw Normal View History

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