PIbd-21_Markov_D.P._LawFirm/LawFirm/LawFirmBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

12 lines
360 B
C#
Raw Normal View History

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