PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopBusinessLogic/OfficePackage/HelperModels/WordTable.cs
2024-04-08 01:56:52 +04:00

10 lines
275 B
C#

namespace CarRepairShopBusinessLogic.OfficePackage.HelperModels
{
public class WordTable
{
public List<string> Headers { get; set; } = new();
public List<List<string>> RowText { get; set; } = new();
public int Columns { get; set; }
}
}