ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
2024-04-05 01:59:38 +04:00

12 lines
363 B
C#

using FishFactoryBusinessLogic.OfficePackage.HelperEnums;
namespace FishFactoryBusinessLogic.OfficePackage.HelperModels
{
public class PdfRowParameters
{
public List<string> Texts { get; set; } = new();
public string Style { get; set; } = string.Empty;
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
}
}