PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs

10 lines
253 B
C#
Raw Normal View History

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