10 lines
326 B
C#
10 lines
326 B
C#
using HotelBusinessLogic.OfficePackage.HelpersEnums;
|
|
|
|
namespace HotelBusinessLogic.OfficePackage.HelpersModels;
|
|
|
|
public class PdfRowParameters
|
|
{
|
|
public List<string> Texts { get; set; } = new();
|
|
public string Style { get; set; } = string.Empty;
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
} |