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

12 lines
333 B
C#
Raw Normal View History

2024-05-01 17:54:58 +04:00
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; }
}
}