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