PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
2023-05-20 12:11:48 +04:00

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; }
}
}