17 lines
414 B
C#
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; }
|
|
}
|
|
}
|