15 lines
359 B
C#
15 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordRowParameters
|
|
{
|
|
public List<string> Texts { get; set; } = new();
|
|
public WordTextProperties TextProperties { get; set; } = new();
|
|
}
|
|
}
|