18 lines
438 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Consulenza.ReportArchive.Entity
{
public class LogPdf
{
public long IdPdf { get; set; }
public string Dtstamp { get; set; }
public string Evento { get; set; }
public string Provenienza { get; set; }
public string EventoDesc { get; set; }
public string Utente { get; set; }
}
}