9 lines
249 B
C#
Raw Permalink Normal View History

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