PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
2024-05-07 21:00:55 +04:00

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; }
}
}