9 lines
252 B
C#
Raw Normal View History

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