12 lines
359 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
using SchoolBusinessLogics.OfficePackage.HelperEnums;
namespace UniversityBusinessLogics.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}