PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs

18 lines
484 B
C#
Raw Normal View History

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