using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
public class Progressivo_out
{
/// Azienda
public string? azienda { get; set; }
/// stringa definisce il tipo di progressivo da gestire
public string? tipo_prog { get; set; }
/// valore progressivo
public int? val_prog { 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; }
}
}