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