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

13 lines
368 B
C#

using AutomobilePlantBusinessLogic.OfficePackage.HelperEnums;
namespace AutomobilePlantBusinessLogic.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}