ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryBusinessLogic/ExcelInfo.cs

22 lines
520 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ConfectioneryContracts.ViewModels;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportPastryComponentViewModel> PastryComponents
{
get;
set;
} = new();
}
}