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