PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

14 lines
347 B
C#
Raw Normal View History

2024-04-28 00:20:34 +04:00
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; }
}
}