ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

12 lines
359 B
C#
Raw Normal View History

2024-04-05 01:59:38 +04:00
using FishFactoryBusinessLogic.OfficePackage.HelperEnums;
namespace FishFactoryBusinessLogic.OfficePackage.HelperModels
{
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}