2024-05-07 21:00:55 +04:00
|
|
|
|
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
|
2024-04-10 02:45:10 +04:00
|
|
|
|
{
|
|
|
|
|
public class WordParagraph
|
|
|
|
|
{
|
|
|
|
|
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
|
|
|
|
public WordTextProperties? TextProperties { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|