Case_accounting/CaseAccounting/CaseAccountingBusinessLogics/OfficePackage/HelperModels/WordParagraph.cs

15 lines
354 B
C#
Raw Normal View History

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; }
}
}