13 lines
354 B
C#
Raw Normal View History

2023-04-28 23:27:42 +04:00
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
2023-04-28 23:27:42 +04:00
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}