PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs

9 lines
252 B
C#
Raw Normal View History

2023-03-10 16:43:19 +04:00
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}