PIbd-23_Mochalov_D.V._LawFirm/LawFirm/LawFirmBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

18 lines
450 B
C#

using LawFirmBusinessLogic.OfficePackage.HelperEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmBusinessLogic.OfficePackage.HelperModels
{
public class WordTextProperties
{
public string Size { get; set; } = string.Empty;
public bool Bold { get; set; }
public WordJustificationType JustificationType { get; set; }
}
}