2023-03-28 00:43:46 +04:00
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
2023-04-24 15:29:03 +04:00
|
|
|
|
public List<PastryViewModel> Pastries { get; set; } = new();
|
2023-03-28 00:43:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|