PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

23 lines
691 B
C#
Raw Normal View History

2024-05-22 10:14:48 +04:00
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
using System;
2024-05-08 01:03:49 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
{
2024-05-22 10:14:48 +04:00
// Информация по параметрам строк таблицы
2024-05-08 01:03:49 +04:00
public class PdfRowParameters
{
// Набор текстов
public List<string> Texts { get; set; } = new();
// Стиль к текстам
public string Style { get; set; } = string.Empty;
// Как выравниваем
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}