PIbd-21_Bakalskaya_E.D._Sus.../SushiBarBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

13 lines
336 B
C#

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