PIbd-23_Abazov_A.A._Confect.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

17 lines
481 B
C#
Raw Normal View History

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