2024-04-05 10:20:47 +04:00

13 lines
336 B
C#

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