2023-04-08 19:57:10 +04:00
|
|
|
|
using BankContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
2023-04-08 22:43:54 +04:00
|
|
|
|
public class ExcelInfoClient
|
2023-04-08 19:57:10 +04:00
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public List<ReportMealPlanDinnerViewModel> MealPlanDinner
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
} = new();
|
|
|
|
|
}
|
|
|
|
|
}
|