2023-05-20 03:13:10 +04:00
|
|
|
|
using CaseAccountingBusinessLogic.OfficePackage.HelperEnums;
|
2023-04-08 18:05:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-05-20 03:13:10 +04:00
|
|
|
|
namespace CaseAccountingBusinessLogic.OfficePackage.HelperModels
|
2023-04-08 18:05:46 +04:00
|
|
|
|
{
|
|
|
|
|
public class PdfRowParameters
|
|
|
|
|
{
|
|
|
|
|
public List<string> Texts { get; set; } = new();
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|