CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

14 lines
353 B
C#
Raw Normal View History

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; }
}
}