fix
This commit is contained in:
parent
f143710f19
commit
1c4600bf37
@ -2,8 +2,10 @@
|
|||||||
{
|
{
|
||||||
public class WordParagraph
|
public class WordParagraph
|
||||||
{
|
{
|
||||||
|
// текст, который входит в параграф
|
||||||
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
||||||
|
|
||||||
|
// свойства по умолчанию
|
||||||
public WordTextProperties? TextProperties { get; set; }
|
public WordTextProperties? TextProperties { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,7 +2,11 @@
|
|||||||
|
|
||||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
|
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
|
||||||
{
|
{
|
||||||
//информация по свойствам текста
|
|
||||||
|
/// <summary>
|
||||||
|
/// Информация по свойствам текста
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
public class WordTextProperties
|
public class WordTextProperties
|
||||||
{
|
{
|
||||||
public string Size { get; set; } = string.Empty;
|
public string Size { get; set; } = string.Empty;
|
||||||
|
Loading…
Reference in New Issue
Block a user