PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

17 lines
448 B
C#
Raw Normal View History

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;
public List<FlowerViewModel> Flowers { get; set; } = new();
}
}