PIbd-22_Gerimovich.I.M._Fur.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs

21 lines
662 B
C#
Raw Normal View History

2024-05-22 10:14:48 +04:00
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
using System;
2024-05-08 01:03:49 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
{
2024-05-22 10:14:48 +04:00
// Информация п параграфу в pdf документе
2024-05-08 01:03:49 +04:00
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
// Информация по выравниванию текста в параграфе
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}