2024-03-24 00:59:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
2024-03-23 17:52:58 +04:00
|
|
|
|
{
|
|
|
|
|
public class WordParagraph
|
|
|
|
|
{
|
|
|
|
|
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
|
|
|
|
public WordTextProperties? TextProperties { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|