11 lines
356 B
C#
Raw Normal View History

2024-04-25 23:20:52 +04:00
using MotorPlantBusinessLogic.OfficePackage.HelperEnums;
namespace MotorPlantBusinessLogic.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}