2024-03-27 08:49:49 +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-04-24 09:15:23 +04:00
|
|
|
|
public List<SushiViewModel> Sushis { get; set; } = new();
|
2024-03-27 08:49:49 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|