20 lines
503 B
C#
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; }
|
|
}
|
|
}
|