10 lines
275 B
C#
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; }
|
|||
|
}
|
|||
|
}
|