PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
2024-03-25 00:53:24 +04:00

26 lines
727 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels
{
/// <summary>
/// Модель для передачи данных
/// для создания абзаца файла-Word
/// </summary>
public class WordParagraph
{
/// <summary>
/// Список текстов в абзаце
/// </summary>
public List<(string, WordTextProperties)> Texts { get; set; } = new();
/// <summary>
/// Свойства абзаца
/// </summary>
public WordTextProperties? TextProperties { get; set; }
}
}