2024-04-25 23:20:52 +04:00

11 lines
338 B
C#

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; }
}
}