PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

22 lines
532 B
C#
Raw Normal View History

2024-03-22 01:29:50 +04:00
using TravelCompanyContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyBusinessLogic.OfficePackage.HelperModels
{
2024-04-19 01:04:50 +04:00
public class ExcelInfo : IDocument
2024-03-22 01:29:50 +04:00
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportTravelComponentViewModel> TravelComponents
{
get;
set;
} = new();
}
}