PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
platoff aeeee de4b7c8c07 lab5proc
2024-05-22 10:14:48 +04:00

23 lines
691 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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