Coursach/Course/BusinessLogic/OfficePackage/HelperModels/WordParagraph.cs

10 lines
245 B
C#
Raw Normal View History

2024-05-26 23:23:24 +04:00

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