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