PIbd-31_Rodionov.I.A._COP_28/COP/RodionovLibrary/NonVisualComponents/HelperModels/WordTableInfo.cs

16 lines
434 B
C#
Raw Normal View History

2024-09-22 23:29:54 +04:00
namespace RodionovLibrary.NonVisualComponents.HelperModels
{
public class WordTableInfo<T>
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ColumnParameters> ColumnParameters { get; set; } = new();
2024-09-22 23:29:54 +04:00
public List<T> Items { get; set; } = new();
public List<(int, int)> MergedColumns { get; set; } = new();
}
}