17 lines
468 B
C#
Raw Normal View History

2024-04-03 20:22:35 +04:00
using DineryBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DineryBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Text { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}