18 lines
555 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FlowerShopContracts.ViewModels;
namespace FlowerShopBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportFlowerComponentViewModel> FlowerComponents { get; set; } = new();
2024-04-04 11:38:58 +04:00
public List<ReportShopFlowerViewModel> ShopFlowers { get; set; } = new();
}
}