2023-04-16 10:47:15 +04:00
|
|
|
|
using AbstractFoodOrdersContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AbstractFoodOrdersBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-04-16 21:50:35 +04:00
|
|
|
|
public List<DishViewModel> Dishes { get; set; } = new();
|
2023-04-16 10:47:15 +04:00
|
|
|
|
}
|
|
|
|
|
}
|