11 lines
357 B
C#
Raw Normal View History

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;
public List<ComponentViewModel> Components { get; set; } = new();
}
}