21 lines
613 B
C#
Raw Normal View History

2024-10-16 14:03:22 +04:00
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;
2024-10-30 14:26:40 +04:00
public List<string> HeaderTitles { get; set; }
public List<float> ColumnWidths { get; set; }
2024-10-16 14:03:22 +04:00
public float HeaderRowHeight { get; set; }
public float DataRowHeight { get; set; }
public List<T>? DataList { get; set; }
2024-10-30 14:26:40 +04:00
public Dictionary<int, string> ColumnPropertyMappings { get; set; }
2024-10-16 14:03:22 +04:00
}
}