using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ApiPolo.Models { /// [Keyless] public class Mag_New_out { /// public string? seriale_rapportino { get; set; } /// public int? riga { get; set; } /// public string? magazzino { get; set; } /// public string? articolo { get; set; } /// public string? tipo_movimento { get; set; } /// [Column(TypeName = "decimal(10, 6)")] public decimal? quantita { get; set; } /// public decimal? prezzo { get; set; } /// public string? codice_tecnico { get; set; } /// public string? generato { get; set; } /// public string? codlotto { get; set; } /// public string? matricola { get; set; } /// descrizione articolo public string? desc_art { get; set; } /// riga impianto public int? cprownum { get; set; } /// codice impianto public string? codimp { get; set; } /// note public string? note { 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; } } }