Pibd-22_Morozov_V.S_Automob.../AutomobilePlant/AbstractAutoBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

13 lines
372 B
C#

using AutomobilePlantBusinessLogic.OfficePackage.HelperEnums;
namespace AutomobilePlantBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}