10 lines
253 B
C#
10 lines
253 B
C#
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordParagraph
|
|
{
|
|
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
|
public WordTextProperties? TextProperties { get; set; }
|
|
|
|
}
|
|
}
|