SoftwayWeb/Models/Modgir.cs
2025-01-14 16:38:45 +01:00

54 lines
1.7 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace SoftwayWeb.Models
{
public class Modgir
{
[Display(Name = "Progressivo")]
public string? Piprogre { get; set; }
[Display(Name = "Seriale destinazione")]
public string? Piserial { get; set; }
[Display(Name = "Data")]
public DateTime? Pidata { get; set; }
[Display(Name = "Committente"), Required(ErrorMessage = "Committente obbligatorio")]
public string? Picommit { get; set; }
[Display(Name = "Sede"), Required(ErrorMessage = "Sede obbligatoria")]
public string? Pidesdiv { get; set; }
[Display(Name = "Cod. Automezzo")]
public string? Pitarga { get; set; }
[Display(Name = "Autitsta")]
public string? Piautist { get; set; }
[Display(Name = "Tipo")]
public string? Pitiprec { get; set; }
public string? Pirigele { get; set; }
[Display(Name = "Seriale Giro")]
public string? Pisergir { get; set; }
[Display(Name = "Casse")]
public decimal? Picasse { get; set; }
[Display(Name = "Trasf.")]
public decimal? Pitrasf { get; set; }
[Display(Name = "Colli")]
public decimal? Picolli { get; set; }
[Display(Name = "Num. Consegna")]
public int? Pinumcons { get; set; }
[Display(Name = "Uova")]
public decimal? Piuova { get; set; }
[Display(Name = "Cist.")]
public decimal? Picist { get; set; }
[Display(Name = "Sequenza")]
public int? Piseq { get; set; }
[Display(Name = "Note")]
public string? Pinote { get; set; }
[Display(Name = "Seriale Giro con destinazioni spostate")]
public string? Pisergirold { get; set; }
}
}