Case_accounting/CaseAccounting/CaseAccountingBusinessLogics/OfficePackage/HelperModels/WordTableData.cs

15 lines
354 B
C#

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