PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
2024-05-19 13:23:06 +04:00

22 lines
522 B
C#

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