ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryBusinessLogic/WordTextProperties.cs
2024-04-11 22:33:25 +04:00

18 lines
462 B
C#

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