12 lines
346 B
C#
12 lines
346 B
C#
|
using SecuritySystemContracts.ViewModels;
|
|||
|
|
|||
|
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class WordInfo
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
public List<ComponentViewModel> Components { get; set; } = new();
|
|||
|
}
|
|||
|
}
|