2024-05-30 16:07:54 +04:00
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
2024-05-31 19:49:56 +04:00
|
|
|
|
public class ExcelInfoClient
|
2024-05-30 16:07:54 +04:00
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-31 19:49:56 +04:00
|
|
|
|
public List<ReportPaymeantsViewModel> Paymeants { get; set; } = new();
|
2024-05-30 16:07:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|