PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

14 lines
351 B
C#
Raw Permalink Normal View History

2024-04-07 10:17:23 +04:00
using GiftShopContracts.ViewModels;
namespace GiftShopBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportGiftComponentViewModel> GiftComponents { get; set; } = new();
}
}