PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs
2023-03-12 20:49:40 +04:00

9 lines
253 B
C#

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