PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
2024-03-22 01:29:50 +04:00

22 lines
520 B
C#

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