11 lines
338 B
C#
Raw Normal View History

2024-04-25 23:20:52 +04:00
using MotorPlantBusinessLogic.OfficePackage.HelperEnums;
namespace MotorPlantBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}