PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
2024-04-10 02:45:10 +04:00

11 lines
254 B
C#

namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}