2024-03-26 16:57:52 +04:00
|
|
|
|
using FlowerShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FlowerShopBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-03-26 22:55:11 +04:00
|
|
|
|
public List<FlowerViewModel> Flowers { get; set; } = new();
|
2024-03-26 16:57:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|