17 lines
466 B
C#
17 lines
466 B
C#
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<string> Texts { get; set; }
|
|
public string Style { get; set; }
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
}
|
|
}
|