ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarBusinessLogic/WordTextProperties.cs

11 lines
334 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; }
}
}