DepartmentProject/DepartmentPortal/AcademicProgressBusinessLogic/HelperModels/WordParagraph.cs

16 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AcademicProgressBusinessLogic.HelperModels
{
class WordParagraph
{
public List<string> Texts { get; set; }
public WordParagraphProperties TextProperties { get; set; }
}
}