namespace RodionovLibrary.NonVisualComponents.HelperModels { public class WordTableInfo { public string FileName { get; set; } = string.Empty; public string Title { get; set; } = string.Empty; public List ColumnParameters { get; set; } = new(); public List Items { get; set; } = new(); public List<(int, int)> MergedColumns { get; set; } = new(); } }