using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models
{
/// ViSTA Chiamate
[Keyless]
public class Sto_Rapp_out
{
/// (LISTA) codice tecnico
public string? tccodice { get; set; }
/// (LISTA) descrizione tecnico
public string? tcdescri { get; set; }
/// (LISTA) note esito
public string? note_esito { get; set; }
/// (LISTA) note esito
public DateTime? data_rapportino { get; set; }
/// dettaglio rapportino
public Dictionary? dettaglio { get; set; }
/// errore titolo
public string? err_title { get; set; }
/// errore dettaglio
public string? err_detail { get; set; }
/// errore status code (200, 500)
public string? err_status_code { get; set; }
}
}