ISEbd-22_CourseWork_School/School/SchoolBusinessLogics/OfficePackage/HelperModels/WordTextProperties.cs

12 lines
333 B
C#

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