35 lines
1010 B
C#
35 lines
1010 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class AnagClienti
|
|
{
|
|
public AnagClienti()
|
|
{
|
|
AnagProgettis = new HashSet<AnagProgetti>();
|
|
}
|
|
|
|
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; }
|
|
public bool? Attivo { get; set; }
|
|
public string CodExt { get; set; }
|
|
|
|
public virtual ICollection<AnagProgetti> AnagProgettis { get; set; }
|
|
}
|
|
}
|