2024-03-24 15:01:54 +04:00
|
|
|
|
using SecuritySystemContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-03-24 22:07:47 +04:00
|
|
|
|
public List<SecureViewModel> Secures { get; set; } = new();
|
2024-03-24 15:01:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|