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