PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemBusinessLogiс/OfficePackage/HelperModels/PdfRowParameters.cs

23 lines
681 B
C#
Raw Normal View History

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