namespace PlumbingRepairBusinessLogic.OfficePackage.HelperModels { public class WordTable { public List<(string, int)> Columns { get; set; } = new(); public List> Rows { get; set; } = new(); } }