10 lines
253 B
C#
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; }
|
|||
|
}
|
|||
|
}
|