ApiVirtualTask/ApiPolo/Models/Progressivo.cs
2025-05-08 17:41:48 +02:00

20 lines
503 B
C#

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