22 lines
611 B
C#
22 lines
611 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
|
||
|
||
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; }
|
||
}
|
||
}
|