using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
///
public class AnagTable
{
/// tipo
[Key]
public string? antipcon { get; set; }
/// codice
[Key]
public string? ancodice { get; set; }
/// codice azienda
[Key]
public string? ancodazi { get; set; }
/// email
public string? an_email { get; set; }
/// codice fiscale
public string? ancodfis { get; set; }
/// partita iva
public string? anpariva { get; set; }
/// indirizzo
public string? anindiri { get; set; }
/// telefono
public string? antelefo { get; set; }
/// cellulare
public string? annumcel { get; set; }
/// pec
public string? an_empec { get; set; }
/// descrizione
public string? andescri { get; set; }
/// listino cliente
public string? annumlis { get; set; }
/// cliente eliminato
public DateTime? andtobso { get; set; }
}
}