36 lines
1.3 KiB
C#
36 lines
1.3 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
|
|
{
|
|
[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; } = "";
|
|
}
|
|
}
|