8 lines
181 B
C#
8 lines
181 B
C#
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordRow
|
|
{
|
|
public List<(string, WordTextProperties)> Rows { get; set; } = new();
|
|
}
|
|
}
|