добавила перечисления для ворда и пдф

This commit is contained in:
Елена Бакальская 2024-05-23 18:38:14 +04:00
parent a02725ff2b
commit 5a05bebae3
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums
{
public enum PdfParagraphAlignmentType
{
Center,
Left,
Rigth
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums
{
public enum WordJustificationType
{
Center,
Both
}
}