Coursach/Course/BusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
2024-05-26 23:23:24 +04:00

10 lines
245 B
C#

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