This commit is contained in:
Николай 2023-03-24 16:49:22 +04:00
parent f143710f19
commit 1c4600bf37
2 changed files with 7 additions and 1 deletions

View File

@ -2,8 +2,10 @@
{
public class WordParagraph
{
// текст, который входит в параграф
public List<(string, WordTextProperties)> Texts { get; set; } = new();
// свойства по умолчанию
public WordTextProperties? TextProperties { get; set; }
}
}

View File

@ -2,7 +2,11 @@
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
{
//информация по свойствам текста
/// <summary>
/// Информация по свойствам текста
/// </summary>
/// <returns></returns>
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;