20 lines
502 B
C#
20 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GestoreTrimestrale
|
|
{
|
|
public class LogItem
|
|
{
|
|
public string Time { get; set; }
|
|
public string Status { get; set; }
|
|
public string FiscalCode { get; set; }
|
|
public string Rete { get; set; }
|
|
public string ContractType { get; set; }
|
|
public string ReportType { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
}
|