2023-03-20 02:50:09 +04:00
|
|
|
|
using SoftwareInstallationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SoftwareInstallationBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-03-20 20:34:36 +04:00
|
|
|
|
public List<PackageViewModel> Packages { get; set; } = new();
|
2023-03-20 02:50:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|