PIbd-23_Bogdanov_D.S._Compu.../ComputerShopBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
2023-03-26 17:06:05 +04:00

21 lines
521 B
C#

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