using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CanteenContracts.View; using CanteenContracts.ViewModels; namespace CanteenBusinessLogic.OfficePackage.HelperModels { public class ExcelInfo { public string FileName { get; set; } public string Title { get; set; } public List Cooks { get; set; } } }