2023-04-07 02:20:02 +04:00

10 lines
304 B
C#

using HotelBusinessLogic.OfficePackage.HelpersEnums;
namespace HotelBusinessLogic.OfficePackage.HelpersModels;
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}