2023-04-08 18:05:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-05-20 01:21:33 +04:00
|
|
|
|
namespace CaseAccountingBusinessLogic.OfficePackage.HelperModels
|
2023-04-08 18:05:46 +04:00
|
|
|
|
{
|
|
|
|
|
public class WordParagraph
|
|
|
|
|
{
|
|
|
|
|
public List<(string, WordTextProperties)> Texts { get; set; } = new();
|
|
|
|
|
public WordTextProperties? TextProperties { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|