2024-03-23 17:52:58 +04:00
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-03-25 10:50:13 +04:00
|
|
|
|
public List<SushiViewModel> Sushi { get; set; } = new();
|
2024-03-23 17:52:58 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|