12 lines
352 B
C#
12 lines
352 B
C#
using FurnitureAssemblyContracts.ViewModels;
|
|
|
|
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<FurnitureViewModel> Furnitures { get; set; } = new();
|
|
}
|
|
}
|