9 lines
254 B
C#
Raw Normal View History

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