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")] public string? Picommit { get; set; } [Display(Name = "Sede")] 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; } } }