добавлены классы для работы с вордовским документом (какие данные передавать, как форматировать)

This commit is contained in:
ekallin 2024-03-23 17:52:58 +04:00
parent 7bd504551a
commit 7d2cf9694c
4 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace SushiBarBusinessLogic.OfficePackage.HelperEnums
{
public enum WordJustificationType
{
Center,
Both
}
}

View File

@ -0,0 +1,12 @@
using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ComponentViewModel> Components { get; set; } = new();
}
}

View File

@ -0,0 +1,8 @@
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}

View File

@ -0,0 +1,11 @@
using SushiBarBusinessLogic.OfficePackage.HelperEnums;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WotdTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}