using AircraftPlantBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels
{
///
/// Модель для описания свойств абзаца
///
public class WordTextProperties
{
///
/// Размер шрифта
///
public string Size { get; set; } = string.Empty;
///
/// Толщина шрифта
///
public bool Bold { get; set; }
///
/// Выравнивание текста
///
public WordJustificationType JustificationType { get; set; }
}
}