PIbd-31_Rodionov.I.A._COP_28/COP/RodionovLibrary/NonVisualComponents/HelperModels/WordTableInfo.cs
2024-09-22 23:29:54 +04:00

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();
}
}