PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantBusinessLogic/OfficePackage/HelperModels/WordTable.cs
2023-05-23 19:15:11 +03:00

15 lines
362 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantBusinessLogic.OfficePackage.HelperModels
{
public class WordTable
{
public List<(string, int)> Columns { get; set; } = new();
public List<List<string>> Rows { get; set; } = new();
}
}