using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VetClinicBusinessLogic.BusinessLogic.OfficePackage.Enums; namespace VetClinicBusinessLogic.BusinessLogic.OfficePackage.Models { public class PdfRowParameters { public List Texts { get; set; } public string Style { get; set; } public PdfParagraphAlignmentType ParagraphAlignment { get; set; } } }