PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemBusinessLogiс/OfficePackage/HelperModels/WordTextProperties.cs

23 lines
703 B
C#
Raw Normal View History

2024-05-08 00:49:35 +04:00
using SecuritySystemBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
{
//модель свойств текста, которые нам нужны в word документе
public class WordTextProperties
{
//размере текста
public string Size { get; set; } = string.Empty;
//надо ли делать его жирным
public bool Bold { get; set; }
//выравнивание
public WordJustificationType JustificationType { get; set; }
}
}