PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
2023-03-22 11:10:23 +03:00

17 lines
451 B
C#

using PizzeriaBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}