using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
public class MagazziniVT
{
///
/// Azienda
///
[Key]
public string? Azienda { get; set; }
///
/// codice magazzino
///
[Key]
public string? Mgcodmag { get; set; }
///
/// descrizione
///
public string? Mgdesmag { get; set; }
///
/// descrizione
///
public DateTime? DataObso { get; set; }
}
}