15 lines
395 B
C#
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();
|
|
}
|
|
} |