12 lines
329 B
C#
12 lines
329 B
C#
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; }
|
|
}
|
|
}
|