2024-04-10 15:15:05 +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;
|
2024-04-24 05:46:48 +04:00
|
|
|
|
public List<PastryViewModel> Pastries { get; set; } = new();
|
2024-04-10 15:15:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|