PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs

17 lines
455 B
C#

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