PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

12 lines
335 B
C#

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