using System.ComponentModel.DataAnnotations; namespace ApiPolo.Models { /// tabella progressivi public class Progressivo { /// Azienda [Key] public string? azienda { get; set; } /// stringa definisce il tipo di progressivo da gestire [Key] public string? tipo_prog { get; set; } /// valore progressivo public int? val_prog { get; set; } } }