using System.ComponentModel.DataAnnotations; namespace VirtualTask.Models { public class Rapportini { /// /// Seriale /// public string? seriale_rapportino { get; set; } /// /// Azienda /// public string? azienda_impianto { get; set; } /// /// Codice Impianto /// [Display(Name = "Impianto")] public string? codice_impianto { get; set; } /// /// Seriale chiamata /// public string? seriale_chiamata { get; set; } /// /// Seriale chiamata /// public string? seriale_commessa { get; set; } /// /// Data rapportino /// public DateTime? data_rapportino { get; set; } } }