2023-04-08 22:43:54 +04:00

21 lines
504 B
C#

using BankContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfoClient
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportMealPlanDinnerViewModel> MealPlanDinner
{
get;
set;
} = new();
}
}