namespace ApiPolo.Models { /// Uscita chiamataTable+chiamate public class Output_Chiamate { /// output di chiamataTable (inserimento in tabella Chiamate) public ChiamateTableOut? chiamataTable { get; set; } /// output di Chiamate_out (inserimento in tabella Rapp_new) public Chiamate_out? chiamate_Out { get; set; } /// output di ChiamateSeriale_out (aggiornamento in tabella in tabella PINUMCHI) public ChiamataSeriale_out? chiaser_Out { get; set; } /// output di ChiamateSeriale_out (aggiornamento in tabella in tabella cpwarn) public Prog_out? prog_Out { get; set; } /// output di ChiamateSeriale_out (aggiornamento in tabella in tabella cpwarn) public Chiamate_out? uscita { 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; } } }