PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairBusinessLogic/OfficePackage/HelperModels/WordTable.cs

8 lines
238 B
C#
Raw Normal View History

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