PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs

9 lines
253 B
C#
Raw Normal View History

2023-03-12 20:49:40 +04:00
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}