PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
Arkadiy Radaev 6d165aa782 res4
2024-04-07 10:17:23 +04:00

10 lines
253 B
C#

namespace GiftShopBusinessLogic.OfficePackage.HelperModels
{
public class WordParagraph
{
public List<(string, WordTextProperties)> Texts { get; set; } = new();
public WordTextProperties? TextProperties { get; set; }
}
}