Files
GPW/GPW.CORE.Data/DbModels/AnagClientiModel.cs
T
2021-12-11 11:54:41 +01:00

43 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AnagClienti")]
public partial class AnagClientiModel
{
public AnagClientiModel()
{
ProgettiNav = new HashSet<AnagProgettiModel>();
}
[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;
/// <summary>
/// codice esterno
/// </summary>
public string CodExt { get; set; } = "";
public virtual ICollection<AnagProgettiModel> ProgettiNav { get; set; }
}
}