CourseWork/University/UniversityBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

12 lines
339 B
C#

using UniversityBusinessLogic.OfficePackage.HelperEnums;
namespace UniversityBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}