using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
///
/// Magazzini azienda
///
public class Magazzini
{
///
/// codice magazzino
///
[Key]
public string? mgcodmag { get; set; }
///
/// descrizione
///
public string? mgdesmag { get; set; }
}
}