8 lines
238 B
C#
8 lines
238 B
C#
|
namespace PlumbingRepairBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class WordTable
|
|||
|
{
|
|||
|
public List<(string, int)> Columns { get; set; } = new();
|
|||
|
public List<List<string>> Rows { get; set; } = new();
|
|||
|
}
|
|||
|
}
|