PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
2024-04-10 15:15:05 +04:00

11 lines
344 B
C#

using ConfectioneryBusinessLogic.OfficePackage.HelperEnums;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}