CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
2023-04-07 14:25:31 +04:00

9 lines
260 B
C#

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