2023-03-10 16:43:19 +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;
|
|
|
|
|
|
2023-03-10 18:23:51 +04:00
|
|
|
|
public List<SushiViewModel> ListSushi { get; set; } = new();
|
2023-03-10 16:43:19 +04:00
|
|
|
|
}
|
|
|
|
|
}
|