ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

11 lines
356 B
C#
Raw Permalink Normal View History

using CarServiceBusinessLogic.OfficePackage.HelperEnums;
2023-05-25 22:31:46 +04:00
namespace CarServiceBusinessLogic.OfficePackage.HelperModels
2023-05-25 22:31:46 +04:00
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}