13 lines
403 B
C#
Raw Normal View History

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;
public List<PastryViewModel> Pastries { get; set; } = new();
public List<ShopViewModel> Shops { get; set; } = new();
2023-03-01 16:42:58 +04:00
}
}