19 lines
556 B
C#
19 lines
556 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Components.SaveToPdfHelpers
|
|
{
|
|
public class PDFTableSettings<T>
|
|
{
|
|
public string FilePath { get; set; } = string.Empty;
|
|
public string DocumentTitle { get; set; } = string.Empty;
|
|
public List<(string HeaderTitles, float Widht, string PropertyName, int ColumnIndex)> Columns { get; set; }
|
|
public float HeaderRowHeight { get; set; }
|
|
public float DataRowHeight { get; set; }
|
|
public List<T>? DataList { get; set; }
|
|
}
|
|
}
|