stage9_10 #16

Merged
ns.potapov merged 98 commits from stage9_10 into main 2024-05-30 04:28:50 +04:00
2 changed files with 29 additions and 0 deletions
Showing only changes of commit 5a05bebae3 - Show all commits

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
}
}