Coursach/Course/BusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
2024-05-26 23:23:24 +04:00

12 lines
319 B
C#

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