PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

31 lines
836 B
C#
Raw Normal View History

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