13 lines
358 B
C#
Raw Normal View History

2024-04-05 10:20:47 +04:00
using ShipyardBusinessLogic.OfficePackage.HelperEnums;
namespace ShipyardBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}