14 lines
350 B
C#
14 lines
350 B
C#
|
using ElectronicsShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class ExcelInfo
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
|
|||
|
public List<ReportOrdersVeiwModel> Orders { get; set; } = new();
|
|||
|
}
|
|||
|
}
|