TP_SEI_Project/root/ContrattoSEI/WhiteList/ReportDaProcessare.cs
2025-04-15 12:10:19 +02:00

22 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SmartFTPThread
{
public class ReportDaProcessare
{
public int IdReport;
public string NomeFile;
public string TipoReport;
public ReportDaProcessare(int idReport,string nomeFile, string tipoReport)
{
IdReport = idReport;
if (!nomeFile.EndsWith(".pdf")) nomeFile += ".pdf";
NomeFile = nomeFile;
TipoReport = tipoReport;
}
}
}