PIbd-21_Belianin_N.N._Furni.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

23 lines
711 B
C#
Raw Normal View History

using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
{
// Модель свойств текста, которые нам нужны в Word документе
public class WordTextProperties
{
// Размер текста
public string Size { get; set; } = string.Empty;
// Надо ли делать его жирным
public bool Bold { get; set; }
// Выравнивание
public WordJustificationType JustificationType { get; set; }
}
}