2023-03-01 16:42:58 +04:00
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2023-03-08 16:05:07 +04:00
|
|
|
|
public List<PastryViewModel> Pastries { get; set; } = new();
|
2023-03-02 02:49:25 +04:00
|
|
|
|
public List<ShopViewModel> Shops { get; set; } = new();
|
2023-03-01 16:42:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|