using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagClienti")] public partial class AnagClientiModel { public AnagClientiModel() { ProgettiNav = new HashSet(); } [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int IdxCliente { get; set; } public string RagSociale { get; set; } = ""; public string Indirizzo { get; set; } = ""; public string Cap { get; set; } = ""; public string Citta { get; set; } = ""; public string Prov { get; set; } = ""; public string Tel { get; set; } = ""; public string Url { get; set; } = ""; public string Email { get; set; } = ""; public string PIva { get; set; } = ""; public string Cf { get; set; } = ""; public string LogoUrl { get; set; } = ""; public string Nota { get; set; } = ""; public int OldIdx { get; set; } = 0; public bool Attivo { get; set; } = false; /// /// codice esterno /// public string CodExt { get; set; } = ""; public virtual ICollection ProgettiNav { get; set; } } }