16 lines
405 B
C#
Raw Normal View History

2024-05-11 11:59:11 +04:00
using SecuritySystemContracts.ViewModels;
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportSecureComponentViewModel> SecureComponents
{
get;
set;
} = new();
}
}