using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models { /// Storico impianti- output [Keyless] public class Sto_Imp_out { /// (LISTA)data rapportino public DateTime? data_rapportino { get; set; } /// (LISTA) codice articolo public string? articolo { get; set; } /// (LISTA) tipologia movimento (E=eliminato,A=aggiunto,S=sotituito) public string? tipo_movimento { get; set; } /// dettaglio movimento impianto 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; } } }