12 lines
329 B
C#
Raw Normal View History

2024-03-24 11:16:24 +04:00
using HotelBusinessLogic.OfficePackage.HelperEnums;
namespace HotelBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}