PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs

9 lines
257 B
C#
Raw Normal View History

2024-04-06 16:29:29 +04:00
namespace CarRepairShopBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}