VirtualTask/Models/MagNewVT.cs
2025-03-05 14:54:39 +01:00

34 lines
1.2 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace VirtualTask.Models
{
public class MagNewVT
{
public string? Azienda { get; set; }
[Display(Name = "Seriale Rapportino")]
public string? Seriale_Rapportino { get; set; }
public int? Riga { get; set; }
public string? Magazzino { get; set; }
public string? Articolo { get; set; }
[Display(Name = "Tipo movimento")]
public string? Tipo_Movimento { get; set; }
[Display(Name = "Quantità")]
public decimal? Quantita { get; set; }
public decimal? Prezzo { get; set; }
[Display(Name = "Cod. Tecnico")]
public string? Codice_Tecnico { get; set; }
public string? Generato { get; set; }
public string? Note { get; set; }
[Display(Name = "Cod. Lotto")]
public string? CodLotto { get; set; }
public string? Matricola { get; set; }
public int? Cprownum { get; set; }
[Display(Name = "Articolo descrizione")]
public string? Desc_Art { get; set; }
[Display(Name = "Cod. Impianto")]
public string? CodImp { get; set; }
[Display(Name = "Descrizione suppl.")]
public string? Desc_Sup { get; set; }
}
}