PIbd-21_Markov_D.P._LawFirm/LawFirm/LawFirmBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

13 lines
334 B
C#

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