22 lines
511 B
C#
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;
|
|
}
|
|
}
|
|
}
|