Coursach/Course/BusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

12 lines
319 B
C#
Raw Normal View History

2024-05-26 23:23:24 +04:00
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; }
}
}