PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

14 lines
337 B
C#
Raw Normal View History

2023-03-10 16:43:19 +04:00
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; }
}
}