PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

18 lines
427 B
C#
Raw Normal View History

2023-05-20 12:11:48 +04:00
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<CookViewModel> Cooks { get; set; }
}
}