using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CanteenBusinessLogic.OfficePackage.HelperEnums; namespace CanteenBusinessLogic.OfficePackage.HelperModels { public class PdfRowParameters { public List Texts { get; set; } public string Style { get; set; } public PdfParagraphAlignmentType ParagraphAlignment { get; set; } } }