PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopBusinessLogic/OfficePackage/HelperModels/WordTable.cs
2024-03-24 18:46:06 +04:00

17 lines
414 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopBusinessLogic.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; }
}
}