PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

12 lines
367 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; }
}
}