31 lines
1014 B
C#
31 lines
1014 B
C#
namespace Apollinare.Domain.Entities;
|
|
|
|
public class Cliente : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Codice cliente - generato automaticamente
|
|
/// </summary>
|
|
public string Codice { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Codice alternativo (opzionale, inserito dall'utente)
|
|
/// </summary>
|
|
public string? CodiceAlternativo { get; set; }
|
|
|
|
public string RagioneSociale { get; set; } = string.Empty;
|
|
public string? Indirizzo { get; set; }
|
|
public string? Cap { get; set; }
|
|
public string? Citta { get; set; }
|
|
public string? Provincia { get; set; }
|
|
public string? Telefono { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Pec { get; set; }
|
|
public string? CodiceFiscale { get; set; }
|
|
public string? PartitaIva { get; set; }
|
|
public string? CodiceDestinatario { get; set; }
|
|
public string? Note { get; set; }
|
|
public bool Attivo { get; set; } = true;
|
|
|
|
public ICollection<Evento> Eventi { get; set; } = new List<Evento>();
|
|
}
|