2023-04-07 02:20:02 +04:00

10 lines
322 B
C#

using HotelBusinessLogic.OfficePackage.HelpersEnums;
namespace HotelBusinessLogic.OfficePackage.HelpersModels;
public class PdfParagraph
{
public string Text { get; set; } = string.Empty;
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}