CourseWork/University/UniversityBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

12 lines
363 B
C#

using UniversityBusinessLogics.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; }
}
}