using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
/// buoni rapportini
public class Buoni
{
/// azienda
[Key]
public string? azienda { get; set; }
/// seriale buono
[Key]
public string? ser_buono { get; set; }
/// immagine
public byte[]? immagine { get; set; }
/// data inserimento
public DateTime? dt_ins { get; set; }
}
}