13 lines
354 B
C#
13 lines
354 B
C#
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
|
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordTextProperties
|
|
{
|
|
public string Size { get; set; } = string.Empty;
|
|
public bool Bold { get; set; }
|
|
public WordJustificationType JustificationType { get; set; }
|
|
}
|
|
}
|