18 lines
371 B
C#
18 lines
371 B
C#
using DocumentFormat.OpenXml.Wordprocessing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AcademicProgressBusinessLogic.HelperModels
|
|
{
|
|
class WordParagraphProperties
|
|
{
|
|
public string Size { get; set; }
|
|
|
|
public bool Bold { get; set; }
|
|
|
|
public JustificationValues JustificationValues { get; set; }
|
|
|
|
}
|
|
}
|