12 lines
336 B
C#
12 lines
336 B
C#
|
using SushiBarBusinessLogic.OfficePackage.HelpersEnum;
|
|||
|
|
|||
|
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels
|
|||
|
{
|
|||
|
public class WordTextProperties
|
|||
|
{
|
|||
|
public string Size { get; set; } = string.Empty;
|
|||
|
public bool Bold { get; set; }
|
|||
|
public WordJustificationType JustificationType { get; set; }
|
|||
|
}
|
|||
|
}
|