diff --git a/ApiPolo/Models/Vt_Mag_New.cs b/ApiPolo/Models/Vt_Mag_New.cs index 98317b6..8c9ac28 100644 --- a/ApiPolo/Models/Vt_Mag_New.cs +++ b/ApiPolo/Models/Vt_Mag_New.cs @@ -7,27 +7,27 @@ namespace ApiPolo.Models { [Key] [Required] - public string Azienda { get; set; } + public string? Azienda { get; set; } [Key] [Required] - public string Seriale_Rapportino { get; set; } + public string? Seriale_Rapportino { get; set; } [Key] [Required] - public int Riga { get; set; } - public string Magazzino { get; set; } - public string Articolo { get; set; } + public int? Riga { get; set; } + public string? Magazzino { get; set; } + public string? Articolo { get; set; } public string Tipo_Movimento { get; set; } public decimal? Quantita { get; set; } public decimal? Prezzo { get; set; } - public string Codice_Tecnico { get; set; } - public string Generato { get; set; } - public string Note { get; set; } - public string CodLotto { get; set; } - public string Matricola { get; set; } + public string? Codice_Tecnico { get; set; } + public string? Generato { get; set; } + public string? Note { get; set; } + public string? CodLotto { get; set; } + public string? Matricola { get; set; } public int? Cprownum { get; set; } - public string Desc_Art { get; set; } - public string CodImp { get; set; } - public string Desc_Sup { get; set; } + public string? Desc_Art { get; set; } + public string? CodImp { get; set; } + public string? Desc_Sup { get; set; } public string? Cpccchk { get; set; } }