PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

15 lines
395 B
C#

using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<SushiViewModel> ListSushi { get; set; } = new();
public List<ShopViewModel> Shops { get; set; } = new();
}
}