Initial commit

This commit is contained in:
2025-11-28 10:59:10 +01:00
commit 14b3e965d0
540 changed files with 784121 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
namespace Apollinare.Domain.Entities;
public class Cliente : BaseEntity
{
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>();
}