using System.ComponentModel.DataAnnotations;
namespace VirtualTask.Models
{
public class Progressivo
{
[StringLength(5)]
/// Azienda
public string? azienda { get; set; }
[StringLength(10)]
/// stringa definisce il tipo di progressivo da gestire
public string? tipo_prog { get; set; }
/// valore progressivo
public int val_prog { get; set; }
}
}