9 lines
258 B
C#
Raw Permalink Normal View History

2024-05-11 11:59:11 +04:00
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}