PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
2023-05-20 12:11:48 +04:00

17 lines
433 B
C#

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