16 lines
434 B
C#
16 lines
434 B
C#
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();
|
|
|
|
public List<T> Items { get; set; } = new();
|
|
|
|
public List<(int, int)> MergedColumns { get; set; } = new();
|
|
}
|
|
}
|