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