PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
2023-03-22 11:10:23 +03:00

17 lines
473 B
C#

using PizzeriaBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}